Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/Shared/_Layout.cshtml URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/Shared/_Layout.cshtml?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/Shared/_Layout.cshtml (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/Shared/_Layout.cshtml Mon Jan 2 17:30:19 2012 @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> +<head> + <title>@ViewBag.Title</title> + <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" /> + <script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script> +</head> + +<body> + @RenderBody() +</body> +</html>
Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/Web.config URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/Web.config?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/Web.config (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/Web.config Mon Jan 2 17:30:19 2012 @@ -0,0 +1,58 @@ +<?xml version="1.0"?> + +<configuration> + <configSections> + <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> + <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" /> + <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" /> + </sectionGroup> + </configSections> + + <system.web.webPages.razor> + <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> + <pages pageBaseType="System.Web.Mvc.WebViewPage"> + <namespaces> + <add namespace="System.Web.Mvc" /> + <add namespace="System.Web.Mvc.Ajax" /> + <add namespace="System.Web.Mvc.Html" /> + <add namespace="System.Web.Routing" /> + </namespaces> + </pages> + </system.web.webPages.razor> + + <appSettings> + <add key="webpages:Enabled" value="false" /> + </appSettings> + + <system.web> + <httpHandlers> + <add path="*" verb="*" type="System.Web.HttpNotFoundHandler"/> + </httpHandlers> + + <!-- + Enabling request validation in view pages would cause validation to occur + after the input has already been processed by the controller. By default + MVC performs request validation before a controller processes the input. + To change this behavior apply the ValidateInputAttribute to a + controller or action. + --> + <pages + validateRequest="false" + pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" + pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" + userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> + <controls> + <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" /> + </controls> + </pages> + </system.web> + + <system.webServer> + <validation validateIntegratedModeConfiguration="false" /> + + <handlers> + <remove name="BlockViewHandler"/> + <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" /> + </handlers> + </system.webServer> +</configuration> Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/_ViewStart.cshtml URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/_ViewStart.cshtml?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/_ViewStart.cshtml (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Views/_ViewStart.cshtml Mon Jan 2 17:30:19 2012 @@ -0,0 +1,3 @@ +@{ + Layout = "~/Views/Shared/_Layout.cshtml"; +} \ No newline at end of file Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.Debug.config URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.Debug.config?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.Debug.config (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.Debug.config Mon Jan 2 17:30:19 2012 @@ -0,0 +1,30 @@ +<?xml version="1.0"?> + +<!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 --> + +<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> + <!-- + In the example below, the "SetAttributes" transform will change the value of + "connectionString" to use "ReleaseSQLServer" only when the "Match" locator + finds an atrribute "name" that has a value of "MyDB". + + <connectionStrings> + <add name="MyDB" + connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True" + xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/> + </connectionStrings> + --> + <system.web> + <!-- + In the example below, the "Replace" transform will replace the entire + <customErrors> section of your web.config file. + Note that because there is only one customErrors section under the + <system.web> node, there is no need to use the "xdt:Locator" attribute. + + <customErrors defaultRedirect="GenericError.htm" + mode="RemoteOnly" xdt:Transform="Replace"> + <error statusCode="500" redirect="InternalError.htm"/> + </customErrors> + --> + </system.web> +</configuration> \ No newline at end of file Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.Release.config URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.Release.config?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.Release.config (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.Release.config Mon Jan 2 17:30:19 2012 @@ -0,0 +1,31 @@ +<?xml version="1.0"?> + +<!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 --> + +<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> + <!-- + In the example below, the "SetAttributes" transform will change the value of + "connectionString" to use "ReleaseSQLServer" only when the "Match" locator + finds an atrribute "name" that has a value of "MyDB". + + <connectionStrings> + <add name="MyDB" + connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True" + xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/> + </connectionStrings> + --> + <system.web> + <compilation xdt:Transform="RemoveAttributes(debug)" /> + <!-- + In the example below, the "Replace" transform will replace the entire + <customErrors> section of your web.config file. + Note that because there is only one customErrors section under the + <system.web> node, there is no need to use the "xdt:Locator" attribute. + + <customErrors defaultRedirect="GenericError.htm" + mode="RemoteOnly" xdt:Transform="Replace"> + <error statusCode="500" redirect="InternalError.htm"/> + </customErrors> + --> + </system.web> +</configuration> \ No newline at end of file Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.config URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.config?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.config (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/Web.config Mon Jan 2 17:30:19 2012 @@ -0,0 +1,54 @@ +<?xml version="1.0"?> +<!-- + For more information on how to configure your ASP.NET application, please visit + http://go.microsoft.com/fwlink/?LinkId=152368 + --> + +<configuration> + <appSettings> + <add key="webpages:Version" value="1.0.0.0"/> + <add key="ClientValidationEnabled" value="true"/> + <add key="UnobtrusiveJavaScriptEnabled" value="true"/> + </appSettings> + + <system.web> + <compilation debug="true" targetFramework="4.0"> + <assemblies> + <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> + <add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> + <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> + <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> + <add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> + </assemblies> + </compilation> + + <authentication mode="Forms"> + <forms loginUrl="~/Account/LogOn" timeout="2880" /> + </authentication> + + <pages> + <namespaces> + <add namespace="System.Web.Helpers" /> + <add namespace="System.Web.Mvc" /> + <add namespace="System.Web.Mvc.Ajax" /> + <add namespace="System.Web.Mvc.Html" /> + <add namespace="System.Web.Routing" /> + <add namespace="System.Web.WebPages"/> + </namespaces> + </pages> + </system.web> + + <system.webServer> + <validation validateIntegratedModeConfiguration="false"/> + <modules runAllManagedModulesForAllRequests="true"/> + </system.webServer> + + <runtime> + <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> + <dependentAssembly> + <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> + <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" /> + </dependentAssembly> + </assemblyBinding> + </runtime> +</configuration> Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/packages.config URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/packages.config?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/packages.config (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/packages.config Mon Jan 2 17:30:19 2012 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<packages> + <package id="jQuery" version="1.5.1" /> + <package id="jQuery.vsdoc" version="1.5.1" /> + <package id="jQuery.Validation" version="1.8.0" /> + <package id="jQuery.UI.Combined" version="1.8.11" /> + <package id="EntityFramework" version="4.1.10331.0" /> + <package id="Modernizr" version="1.7" /> +</packages> \ No newline at end of file Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/pom.test URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/pom.test?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/pom.test (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/MvcApplication1/pom.test Mon Jan 2 17:30:19 2012 @@ -0,0 +1,126 @@ +<?xml version="1.0" encoding="utf-8"?> +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://maven.apache.org/POM/4.0.0"> + <parent> + <artifactId>test-parent</artifactId> + <groupId>test.group</groupId> + <version>1.2.3-SNAPSHOT</version> + <relativePath>..\pom.xml</relativePath> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>MvcApplication1</artifactId> + <packaging>dotnet-library</packaging> + <name>test.group : MvcApplication1</name> + <build> + <sourceDirectory>./</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.npanday.plugins</groupId> + <artifactId>maven-compile-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <frameworkVersion>4.0</frameworkVersion> + <includeSources> + <includeSource>Global.asax.cs</includeSource> + <includeSource>Properties\AssemblyInfo.cs</includeSource> + </includeSources> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.npanday.plugins</groupId> + <artifactId>aspnet-maven-plugin</artifactId> + <executions> + <execution> + <id>prepare-package</id> + <goals> + <goal>assemble-package-files</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.npanday.plugins</groupId> + <artifactId>msdeploy-maven-plugin</artifactId> + <executions> + <execution> + <id>create-msdeploy-package</id> + <goals> + <goal>create-package</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>System.Data.Entity</groupId> + <artifactId>System.Data.Entity</artifactId> + <version>4.0.0.0</version> + <type>gac_msil4</type> + <classifier>b77a5c561934e089</classifier> + </dependency> + <dependency> + <groupId>System.Web.Mvc</groupId> + <artifactId>System.Web.Mvc</artifactId> + <version>3.0.0.0</version> + <type>gac_msil4</type> + <classifier>31bf3856ad364e35</classifier> + </dependency> + <dependency> + <groupId>System.Web.WebPages</groupId> + <artifactId>System.Web.WebPages</artifactId> + <version>1.0.0.0</version> + <type>gac_msil4</type> + <classifier>31bf3856ad364e35</classifier> + </dependency> + <dependency> + <groupId>System.Web.Helpers</groupId> + <artifactId>System.Web.Helpers</artifactId> + <version>1.0.0.0</version> + <type>gac_msil4</type> + <classifier>31bf3856ad364e35</classifier> + </dependency> + <dependency> + <groupId>System.Web.DynamicData</groupId> + <artifactId>System.Web.DynamicData</artifactId> + <version>4.0.0.0</version> + <type>gac_msil4</type> + <classifier>31bf3856ad364e35</classifier> + </dependency> + <dependency> + <groupId>System.Web.Entity</groupId> + <artifactId>System.Web.Entity</artifactId> + <version>4.0.0.0</version> + <type>gac_msil4</type> + <classifier>b77a5c561934e089</classifier> + </dependency> + <dependency> + <groupId>System.Web.ApplicationServices</groupId> + <artifactId>System.Web.ApplicationServices</artifactId> + <version>4.0.0.0</version> + <type>gac_msil4</type> + <classifier>31bf3856ad364e35</classifier> + </dependency> + <dependency> + <groupId>System.ComponentModel.DataAnnotations</groupId> + <artifactId>System.ComponentModel.DataAnnotations</artifactId> + <version>4.0.0.0</version> + <type>gac_msil4</type> + <classifier>31bf3856ad364e35</classifier> + </dependency> + <dependency> + <groupId>System.Web.Abstractions</groupId> + <artifactId>System.Web.Abstractions</artifactId> + <version>4.0.0.0</version> + <type>gac_msil4</type> + <classifier>31bf3856ad364e35</classifier> + </dependency> + <dependency> + <groupId>System.Web.Routing</groupId> + <artifactId>System.Web.Routing</artifactId> + <version>4.0.0.0</version> + <type>gac_msil4</type> + <classifier>31bf3856ad364e35</classifier> + </dependency> + </dependencies> +</project> Added: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/pom.test URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/pom.test?rev=1226484&view=auto ============================================================================== --- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/pom.test (added) +++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/resource/MvcApplication1/pom.test Mon Jan 2 17:30:19 2012 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://maven.apache.org/POM/4.0.0"> + <modelVersion>4.0.0</modelVersion> + <groupId>test.group</groupId> + <artifactId>test-parent</artifactId> + <packaging>pom</packaging> + <name>test.group : test-parent</name> + <version>1.2.3-SNAPSHOT</version> + <modules> + <module>MvcApplication1</module> + </modules> +</project>
