[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: Re: Re: Strange Problem (Asked before)

From: Hasan Çetin <hcetin_at_proset.com.tr>
Date: 2006-02-01 19:33:53 CET

Hmmmm... This is a very simple option of course :)
Thank you..
Best Regards,
Hasan Cetin

-----Original Message-----
From: Kevin Greiner [mailto:greinerk@gmail.com]
Sent: Wednesday, February 01, 2006 8:33 PM
To: users@tortoisesvn.tigris.org
Subject: Re: Re: Strange Problem (Asked before)

On 2/1/06, Yazılım <yazilim@proset.com.tr> wrote:
> So what i understand is that, if i install v1.3.x.x with ASP.NET hack option included, it creates an enviroment var named ASP_DOT_NET_HACK, and after the reboot it ignores the .svn folders of the current working copies and looks for _svn folders to name a directory a "working copy". Is this correct?

Right.

> If so, isn't this a bug or something?

No, it's by design.

>We're planning to develop some Web projects with Vs.Net, so we will
need this ASP.NET Hack option in the near future. So before we will install it, we have to commit all the working copies, remove them, install Tortoise with ASP.NET Hack option checked, and then re-checkout the repositories. Is this assumption also correct?

Why not rename your wc directories to _svn? Here's the VBS code I use.

-----------------------

Set FSO = CreateObject("Scripting.FileSystemObject")

ShowSubfolders FSO.GetFolder(".\")

Wscript.Echo "Renamed .svn folders to _svn"

Sub ShowSubFolders(Folder)
        For Each Subfolder in Folder.SubFolders
                rem Wscript.Echo Subfolder.Path
                If Subfolder.Name = ".svn" Then
                        Subfolder.Name = "_svn"
                        rem Wscript.Echo " renamed .svn -> " & Subfolder.Path
                        rem Wscript.Echo errResults
                End If
                ShowSubFolders Subfolder
        Next
End Sub

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: users-help@tortoisesvn.tigris.org
Received on Wed Feb 1 19:43:12 2006

This is an archived mail posted to the TortoiseSVN Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.