Modified: manifoldcf/integration/sharepoint-2010/trunk/NOTICE.txt URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/trunk/NOTICE.txt?rev=1362005&r1=1362004&r2=1362005&view=diff ============================================================================== --- manifoldcf/integration/sharepoint-2010/trunk/NOTICE.txt (original) +++ manifoldcf/integration/sharepoint-2010/trunk/NOTICE.txt Mon Jul 16 12:45:30 2012 @@ -1,4 +1,4 @@ -Apache ManifoldCF SharePoint 3.0 Plugin +Apache ManifoldCF SharePoint 2010 Plugin Copyright 2010-2011 The Apache Software Foundation This product includes software developed by
Modified: manifoldcf/integration/sharepoint-2010/trunk/README.txt URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/trunk/README.txt?rev=1362005&r1=1362004&r2=1362005&view=diff ============================================================================== --- manifoldcf/integration/sharepoint-2010/trunk/README.txt (original) +++ manifoldcf/integration/sharepoint-2010/trunk/README.txt Mon Jul 16 12:45:30 2012 @@ -14,7 +14,7 @@ # limitations under the License. -Instructions for Building Apache ManifoldCF SharePoint 3.0 Plugin from Source +Instructions for Building Apache ManifoldCF SharePoint 2010 Plugin from Source -------------------------------------------------------------------------- 1. Download the Java SE 5 JDK (Java Development Kit), or greater, from http://java.sun.com. @@ -31,16 +31,16 @@ Instructions for Building Apache Manifol build.xml file), and type "ant" for directions. -Some Files Included In Apache ManifoldCF SharePoint 3.0 Plugin Distributions +Some Files Included In Apache ManifoldCF SharePoint 2010 Plugin Distributions ------------------------------------------------------------------------- dist/MetaCarta.SharePoint.MCPermissionsService.wsp - The Apache ManifoldCF SharePoint 3.0 Plugin assembly. + The Apache ManifoldCF SharePoint 2010 Plugin assembly. Licensing --------- -Apache ManifoldCF SharePoint 3.0 Plugin is licensed under the +Apache ManifoldCF SharePoint 2010 Plugin is licensed under the Apache License 2.0. See the files called LICENSE.txt and NOTICE.txt for more information. @@ -69,7 +69,7 @@ code and source code. The following provides more details on the included software that may be subject to export controls on cryptographic software: - The Apache ManifoldCF SharePoint 3.0 Plugin + The Apache ManifoldCF SharePoint 2010 Plugin does not include any implementation or usage of cryptographic software at this time. @@ -77,5 +77,5 @@ Contact ------- o For general information visit the main project site at - http://incubator.apache.org/connectors + http://manifoldcf.apache.org Modified: manifoldcf/integration/sharepoint-2010/trunk/build.xml URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/trunk/build.xml?rev=1362005&r1=1362004&r2=1362005&view=diff ============================================================================== --- manifoldcf/integration/sharepoint-2010/trunk/build.xml (original) +++ manifoldcf/integration/sharepoint-2010/trunk/build.xml Mon Jul 16 12:45:30 2012 @@ -15,11 +15,11 @@ limitations under the License. --> -<project name="mcf-sharepoint-2007-plugin" default="help"> +<project name="mcf-sharepoint-2010-plugin" default="help"> <target name="clean"> <delete> - <fileset dir="." includes="apache-manifoldcf-sharepoint-2007-plugin-*"/> + <fileset dir="." includes="apache-manifoldcf-sharepoint-2010-plugin-*"/> </delete> <delete file="webservice/Web References/SPPermissionsService/Permissions.wsdl"/> <delete file="webservice/Package/*.wsp"/> @@ -41,7 +41,7 @@ </target> <target name="precompile-check" depends="calculate-condition" unless="canBuild"> - <echo message="Apache SharePoint 2007 ManifoldCF Plugin cannot be built without Permissions.wsdl"/> + <echo message="Apache SharePoint 2010 ManifoldCF Plugin cannot be built without Permissions.wsdl"/> </target> <target name="compile" depends="precompile-check" if="canBuild"> @@ -66,50 +66,50 @@ <target name="build" depends="deliver" if="canBuild"/> <target name="set-version"> - <property name="release-version" value="0.1-incubating"/> + <property name="release-version" value="0.2-dev"/> </target> <target name="create-source-zip" depends="set-version"> - <zip destfile="apache-manifoldcf-sharepoint-2007-plugin-${release-version}-src.zip" update="false"> - <zipfileset dir="." prefix="apache-manifoldcf-sharepoint-2007-plugin-${release-version}"> + <zip destfile="apache-manifoldcf-sharepoint-2010-plugin-${release-version}-src.zip" update="false"> + <zipfileset dir="." prefix="apache-manifoldcf-sharepoint-2010-plugin-${release-version}"> <exclude name="/wsdls/Permissions.wsdl"/> <exclude name="/webservice/Web References/SPPermissionsService/Permissions.wsdl"/> <exclude name="/webservice/Package/*.wsp"/> <exclude name="/dist/"/> - <exclude name="/apache-manifoldcf-sharepoint-2007-plugin-*"/> + <exclude name="/apache-manifoldcf-sharepoint-2010-plugin-*"/> </zipfileset> </zip> </target> <target name="create-source-tar" depends="set-version"> - <tar destfile="apache-manifoldcf-sharepoint-2007-plugin-${release-version}-src.tar.gz" compression="gzip" longfile="gnu"> - <tarfileset dir="." prefix="apache-manifoldcf-sharepoint-2007-plugin-${release-version}"> + <tar destfile="apache-manifoldcf-sharepoint-2010-plugin-${release-version}-src.tar.gz" compression="gzip" longfile="gnu"> + <tarfileset dir="." prefix="apache-manifoldcf-sharepoint-2010-plugin-${release-version}"> <exclude name="/wsdls/Permissions.wsdl"/> <exclude name="/webservice/Web References/SPPermissionsService/Permissions.wsdl"/> <exclude name="/webservice/Package/*.wsp"/> <exclude name="/dist/"/> - <exclude name="/apache-manifoldcf-sharepoint-2007-plugin-*"/> + <exclude name="/apache-manifoldcf-sharepoint-2010-plugin-*"/> </tarfileset> </tar> </target> <target name="create-bin-zip" depends="build,set-version"> - <zip destfile="apache-manifoldcf-sharepoint-2007-plugin-${release-version}-bin.zip" update="false"> - <zipfileset dir="." prefix="apache-manifoldcf-sharepoint-2007-plugin-${release-version}"> + <zip destfile="apache-manifoldcf-sharepoint-2010-plugin-${release-version}-bin.zip" update="false"> + <zipfileset dir="." prefix="apache-manifoldcf-sharepoint-2010-plugin-${release-version}"> <exclude name="/wsdls/"/> <exclude name="/webservice/"/> - <exclude name="apache-manifoldcf-sharepoint-2007-plugin-*"/> + <exclude name="apache-manifoldcf-sharepoint-2010-plugin-*"/> <exclude name="build.xml"/> </zipfileset> </zip> </target> <target name="create-bin-tar" depends="build,set-version"> - <tar destfile="apache-manifoldcf-sharepoint-2007-plugin-${release-version}-bin.tar.gz" compression="gzip" longfile="gnu"> - <tarfileset dir="." prefix="apache-manifoldcf-sharepoint-2007-plugin-${release-version}"> + <tar destfile="apache-manifoldcf-sharepoint-2010-plugin-${release-version}-bin.tar.gz" compression="gzip" longfile="gnu"> + <tarfileset dir="." prefix="apache-manifoldcf-sharepoint-2010-plugin-${release-version}"> <exclude name="/wsdls/"/> <exclude name="/webservice/"/> - <exclude name="apache-manifoldcf-sharepoint-2007-plugin-*"/> + <exclude name="apache-manifoldcf-sharepoint-2010-plugin-*"/> <exclude name="build.xml"/> </tarfileset> </tar> @@ -119,7 +119,7 @@ <target name="help"> <echo level="info"> -Apache ManifoldCF SharePoint 2007 Plugin build file. Use this +Apache ManifoldCF SharePoint 2010 Plugin build file. Use this file to build the plugin distributables. Useful targets are:
