Renamed widget editor template files.

--HG--
branch : dev
This commit is contained in:
Andre Rodrigues
2010-10-11 10:26:23 -07:00
parent a37f967556
commit 140f4d22cc
5 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ namespace Orchard.Widgets.Drivers {
protected override DriverResult Editor(LayerPart layerPart, dynamic shapeHelper) {
ContentLocation location = layerPart.GetLocation("Editor");
return ContentPartTemplate(layerPart, "Parts/Widgets.Layer").Location(location);
return ContentPartTemplate(layerPart, "Parts/Widgets.LayerPart").Location(location);
}
protected override DriverResult Editor(LayerPart layerPart, IUpdateModel updater, dynamic shapeHelper) {

View File

@@ -19,7 +19,7 @@ namespace Orchard.Widgets.Drivers {
widgetPart.AvailableZones = _widgetsService.GetZones();
ContentLocation location = widgetPart.GetLocation("Editor");
return ContentPartTemplate(widgetPart, "Parts/Widgets.Widget").Location(location);
return ContentPartTemplate(widgetPart, "Parts/Widgets.WidgetPart").Location(location);
}
protected override DriverResult Editor(WidgetPart widgetPart, IUpdateModel updater, dynamic shapeHelper) {

View File

@@ -114,8 +114,8 @@
<None Include="Views\Admin\EditWidget.cshtml" />
<None Include="Views\Admin\EditLayer.cshtml" />
<None Include="Views\Admin\Index.cshtml" />
<Content Include="Views\EditorTemplates\Parts\Widgets.Widget.cshtml" />
<Content Include="Views\EditorTemplates\Parts\Widgets.Layer.cshtml" />
<Content Include="Views\EditorTemplates\Parts\Widgets.WidgetPart.cshtml" />
<Content Include="Views\EditorTemplates\Parts\Widgets.LayerPart.cshtml" />
<None Include="Views\EditorTemplates\Parts\Widgets.WidgetBagPart.cshtml" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />