warning: SVN access via http://svn.sourceforge.net/ has gone away
Steve Loughran <[email protected]> Tue, 10 Jul 2007 12:51:27 +0100
| Newsgroups | gmane.comp.java.smartfrog.devel |
|---|---|
| Message-ID | <[email protected]> |
This is a multi-part message in MIME format.
--------------040602080300090508060703
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Subversion have updated their status today (
http://sourceforge.net/docman/display_doc.php?docid=2352&group_id=1#1184001090
) and announced that you can no longer access any SVN repository
directly from svn.sourceforge.net; you have to use the project specific
hostname.
If you cannot update or check in code, it means you are still using the
old URL, and not https://smartfrog.svn.sourceforge.net/svnroot/smartfrog
Here is the information on accessing sourceforge SVN
http://sourceforge.net/svn/?group_id=87384
1. yes, you do need to check everything out. svn switch doesn't let you
change hostnames
2. I've attached a build file that can copy IDEA project files from one
svn repository tree to another. you can use this to pull over old
project files once the checkout is complete
-steve
--
-----------------------
Hewlett-Packard Limited
Registered Office: Cain Road, Bracknell, Berks RG12 1HN
Registered No: 690597 England
--------------040602080300090508060703
Content-Type: text/xml;
name="copy.xml"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="copy.xml"
<project name="copychanged">
<fail unless="src">No src property set</fail>
<fail unless="dest">No dest property set</fail>
<target name="all">
<copy todir="${dest}"
overwrite="true" verbose="true">
<fileset dir="${src}"
excludes="**/build/**/*">
<different targetdir="${dest}" />
</fileset>
</copy>
</target>
<target name="idea">
<copy todir="${dest}"
overwrite="true" verbose="true">
<fileset dir="${src}"
includes="**/*.ipr,**/*.iws,**/*.iml">
<different targetdir="${dest}" />
</fileset>
</copy>
</target>
</project>
--------------040602080300090508060703
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--------------040602080300090508060703
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Smartfrog-developer mailing list
Smartfrog-developer-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/smartfrog-developer
--------------040602080300090508060703--