我正在尝试使用SVN补丁文件在我正在开发时从Web API中删除身份验证。删除身份验证的补丁文件工作正常,如下所示:
Index: WebApplication.Api/Global.asax.cs
===================================================================
--- WebApplication.Api/Global.asax.cs (revision 18939)
+++ WebApplication.Api/Global.asax.cs (working copy)
@@ -115,7 +115,7 @@
_dependencyRegister.AddRegistration<WebApplication.Application.Aspects.AuthorisationAspect>();
// WebApplication.Application.CurrentUser
- _dependencyRegister.AddRegistration<WebApplication.Application.CurrentUser.ICurrentUserService, WebApplication.Application.CurrentUser.CurrentUserService>();
+ _dependencyRegister.AddRegistration<WebApplication.Application.CurrentUser.ICurrentUserService, WebApplication.Api.DummyServices.CurrentUserService>();
// WebApplication.Application.Interface.Manager
_dependencyRegister.AddRegistration<WebApplication.Application.Interface.Manager.IAspNetMembershipManager, WebApplication.Application.Manager.AspNetMembershipManager>();
Index: WebApplication.Api/Web.config
===================================================================
--- WebApplication.Api/Web.config (revision 18939)
+++ WebApplication.Api/Web.config (working copy)
@@ -64,14 +64,12 @@
</sessionState>
<httpModules>
<add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.Windsor" />
- <add name="ProtectedResourceModule" type="WebApplication.Api.Modules.ProtectionModule"/>
</httpModules>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="true">
<add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.Windsor" />
- <add name="ProtectedResourceModule" type="WebApplication.Api.Modules.ProtectionModule"/>
</modules>
<httpErrors existingResponse="PassThrough" />
</system.webServer>
如您所见,它会更改接口的DI实现,并从XML配置文件中删除两个节点。
由于没有办法(我已经发现)反向应用补丁(我在Visual Studio中使用VisualSVN来应用补丁),我已经基于原始补丁文件创建了一个“反向补丁”: / p>
Index: WebApplication.Api/Global.asax.cs
===================================================================
--- WebApplication.Api/Global.asax.cs (revision 18939)
+++ WebApplication.Api/Global.asax.cs (working copy)
@@ -115,7 +115,7 @@
_dependencyRegister.AddRegistration<WebApplication.Application.Aspects.AuthorisationAspect>();
// WebApplication.Application.CurrentUser
+ _dependencyRegister.AddRegistration<WebApplication.Application.CurrentUser.ICurrentUserService, WebApplication.Application.CurrentUser.CurrentUserService>();
- _dependencyRegister.AddRegistration<WebApplication.Application.CurrentUser.ICurrentUserService, WebApplication.Api.DummyServices.CurrentUserService>();
// WebApplication.Application.Interface.Manager
_dependencyRegister.AddRegistration<WebApplication.Application.Interface.Manager.IAspNetMembershipManager, WebApplication.Application.Manager.AspNetMembershipManager>();
Index: WebApplication.Api/Web.config
===================================================================
--- WebApplication.Api/Web.config (revision 18939)
+++ WebApplication.Api/Web.config (working copy)
@@ -64,14 +64,12 @@
</sessionState>
<httpModules>
<add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.Windsor" />
+ <add name="ProtectedResourceModule" type="WebApplication.Api.Modules.ProtectionModule"/>
</httpModules>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="true">
<add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.Windsor" />
+ <add name="ProtectedResourceModule" type="WebApplication.Api.Modules.ProtectionModule"/>
</modules>
<httpErrors existingResponse="PassThrough" />
</system.webServer>
相当简单,我所做的就是改变+符号 - 反之亦然。这会创建一个对我有意义的反向补丁文件。
反向补丁工作正常,只是XML配置文件中的最后一行“添加”以及添加该行也会删除以下几行,从而导致格式错误的XML。
任何人都可以告诉为什么会这样吗?我是否需要使用魔法@@ -64,14 +64,12 @@
做一些事情?
答案 0 :(得分:4)
我只是好奇,我认为这应该可以在互联网上找到。所以这就是我所做的:
visualsvn create reverse patch
这似乎会处理您的正常补丁并执行您想要执行的操作。因此,不需要手动反转补丁。
另一种方法可能是从正确的diff command
开始,有一个选项可以通过交换修订的顺序来创建反向补丁。
答案 1 :(得分:4)
这似乎最简单的方法是通过命令行。我找不到任何方法通过Visual SVN或Tortoise的UI反向应用补丁文件,我不知道为什么手动修改补丁文件不起作用。
在命令行中,导航到工作副本目录并输入以下命令以应用修补程序文件:
svn patch [path and name of patch file]
反向应用:
svn patch --reverse-diff [path and name of patch file]
答案 2 :(得分:0)
交换14
和12
是否也有效? (将@@ -64,14 +64,12 @@
更改为@@ -64,12 +64,14
)