Skip to content

Commit

Permalink
Issue#3 support for Sitecore 7
Browse files Browse the repository at this point in the history
removed system.web/compilation 4.0 from transform
rooted ship services url
rolled version to 0.3.5
  • Loading branch information
kevinobee committed Aug 15, 2013
1 parent c7549f9 commit 0028c8d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build/Ship.versions.targets
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<MajorVersion>0</MajorVersion>
<MinorVersion>3</MinorVersion>
<PatchVersion>4</PatchVersion>
<PatchVersion>5</PatchVersion>


<!-- Change PRERELEASE to an empty value or comment out the tag to prevent package names being generated with a -->
Expand Down
2 changes: 1 addition & 1 deletion build/packaging/Sitecore.Ship.AspNet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<iconUrl>https://secure.gravatar.com/avatar/dd3d0f6dd07cbf52325c74c293866410</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Sitecore package installer and remote publishing over HTTP. This package is built using native ASP.NET functionality and takes no dependency on the Nancy framework.</description>
<releaseNotes>This is a development release version of the package.</releaseNotes>
<releaseNotes>0.3.5 - support for Sitecore 7 added</releaseNotes>
<tags>Sitecore Update Package Deploy</tags>
<language>en-GB</language>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion build/packaging/Sitecore.Ship.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<iconUrl>https://secure.gravatar.com/avatar/dd3d0f6dd07cbf52325c74c293866410</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Sitecore package installer and remote publishing over HTTP</description>
<releaseNotes>This is a development release version of the package.</releaseNotes>
<releaseNotes>0.3.5 - support for Sitecore 7 added</releaseNotes>
<tags>Sitecore Update Package Deploy</tags>
<language>en-GB</language>
<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions src/Sitecore.Ship.AspNet/content/web.config.transform
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<packageInstallation enabled="true" allowRemote="false" allowPackageStreaming="false" recordInstallationHistory="false" />
<system.web>
<httpHandlers>
<add verb="*" type="Sitecore.Ship.AspNet.SitecoreShipHttpHandler, Sitecore.Ship.AspNet" path="services/*" />
<add verb="*" type="Sitecore.Ship.AspNet.SitecoreShipHttpHandler, Sitecore.Ship.AspNet" path="/services/*" />
</httpHandlers>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<remove name="Sitecore.Ship" />
<add name="Sitecore.Ship" verb="*" type="Sitecore.Ship.AspNet.SitecoreShipHttpHandler, Sitecore.Ship.AspNet" path="services/*" />
<add name="Sitecore.Ship" verb="*" type="Sitecore.Ship.AspNet.SitecoreShipHttpHandler, Sitecore.Ship.AspNet" path="/services/*" />
</handlers>
</system.webServer>
</configuration>
2 changes: 1 addition & 1 deletion src/Sitecore.Ship/About/Views/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h1>Sitecore.Ship : <small>Smarter Package Management</small></h1>
<ul class="list">
<li>This is a development version of the package installer</li>
<li>Source code maintained on <a href="https://github.com/kevinobee/Sitecore.Ship">GitHub</a></li>
<li>Current release : <strong>version 0.3.4</strong></li>
<li>Current release : <strong>version 0.3.5</strong></li>
</ul>

<h2>Features</h2>
Expand Down
5 changes: 2 additions & 3 deletions src/Sitecore.Ship/content/web.config.transform
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,16 @@
<bootstrapper assembly="Sitecore.Ship" type="Sitecore.Ship.DefaultBootstrapper, Sitecore.Ship" />
</nancyFx>
<system.web>
<compilation debug="false" targetFramework="4.0" />
<httpHandlers>
<add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="services/*" />
<add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="/services/*" />
</httpHandlers>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<remove name="Nancy" />
<add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="services/*" />
<add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="/services/*" />
</handlers>
</system.webServer>
</configuration>

1 comment on commit 0028c8d

@kevinobee
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue #3 ammends

Please sign in to comment.