0

私はオーチャードにとても慣れていません。

Mintyテーマをベースにした新しいテーマを作成しました。唯一の実際の変更はレイアウトです。ここでは、既存のasp.netマスターページのhtmlを、果樹園スタイルのかみそりのlayout.cshtmlと一致するように調整しました。私はMVCとかみそりの経験があるので、その側では問題ありません...重要な何かを見逃していない限り。

問題はログインページです。サインインリンクをクリックすると、エラーなしで正しいURLに移動しますが、ログインフォームは表示されません。私はこれがグーグルクロームの要素を検査することによって事実であることを確認しました。

ウィジェットの設定などでコンテンツを表示できることは承知しています。ただし、ログインURLが要求されたときにログインフォームがどのように挿入されるかがわかりません。Orchard.Usersモジュールを使用していると思いますが、その方法はわかりません。特定のゾーンが必要ですか?理由はわかりませんが、他の方法はわかります。

その結果、問題を解決できません...

ポインタはありますか?

本やその他の学習メディアはありますか?

私のlayout.cshtmlのコードは次のとおりです。

@functions {
    // To support the layout classifaction below. Implementing as a razor function because we can, could otherwise be a Func<string[], string, string> in the code block following.
    string CalcuClassify(string[] zoneNames, string classNamePrefix) {
        var zoneCounter = 0;
        var zoneNumsFilled = string.Join("", zoneNames.Select(zoneName => { ++zoneCounter; return Model[zoneName] != null ? zoneCounter.ToString() : "";}).ToArray());
        return HasText(zoneNumsFilled) ? classNamePrefix + zoneNumsFilled : "";
    }
}
@{
    /* Global includes for the theme
    ***************************************************************/

    SetMeta("X-UA-Compatible", "IE=edge,chrome=1");
    Style.Include("http://fonts.googleapis.com/css?family=Handlee");
    Style.Include("http://html5shiv.googlecode.com/svn/trunk/html5.js");
    Style.Include("site.css");
    Script.Require("jQuery").AtHead();
    Script.Require("jQueryUI_Core").AtHead();
    Script.Require("jQueryUI_Tabs").AtHead();
    Script.Include("http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.0.4/modernizr.min.js").AtHead();
    Style.Include("TagDefaults.css");
    Style.Include("LayoutStructure.css");
    Style.Include("LayoutStyling.css");
    Style.Include("TopMenu.css");
    Style.Include("LeftBlock.css");
    Style.Include("RightBlock.css");
    Style.Include("MenuAdapter.css");
    Style.Include("Content.css");
    Style.Include("FloatedBoxes.css");
    Style.Include("Helen.css");

    /* Some useful shortcuts or settings
    ***************************************************************/

    Func<dynamic, dynamic> Zone = x => Display(x); // Zone as an alias for Display to help make it obvious when we're displaying zones

    /* Layout classification based on filled zones
    ***************************************************************/

    //Add classes to the wrapper div to toggle aside widget zones on and off
    var asideClass = CalcuClassify(new [] {"Sidebar"}, "aside-"); // for aside-1, aside-2 or aside-12 if any of the aside zones are filled
    if (HasText(asideClass)) {
        Model.Classes.Add(asideClass);
    }

    //Add classes to the wrapper div to toggle tripel widget zones on and off
    var tripelClass = CalcuClassify(new [] {"TripelFirst", "TripelSecond", "TripelThird"}, "tripel-"); // for tripel-1, triple-2, etc. if any of the tripel zones are filled
    if (HasText(tripelClass)) {
        Model.Classes.Add(tripelClass);
    }

    //Add classes to the wrapper div to toggle quad widget zones on and off
    var footerQuadClass = CalcuClassify(new [] {"FooterQuadFirst", "FooterQuadSecond", "FooterQuadThird", "FooterQuadFourth"}, "split-"); // for quad-1, quad-2, etc. if any of the quad zones are filled
    if (HasText(footerQuadClass)) {
        Model.Classes.Add(footerQuadClass);
    }

    var slideshowClass = CalcuClassify(new[] {"HomeSlideshow"}, "slideshow-");
    if (HasText(slideshowClass)) {
        Model.Classes.Add(slideshowClass);
    }

    /* Inserting some ad hoc shapes
    ***************************************************************/

    //WorkContext.Layout.Header.Add(New.Branding(), "5"); // Site name and link to the home page
    //WorkContext.Layout.Footer.Add(New.BadgeOfHonor(), "5"); // Powered by Orchard
    WorkContext.Layout.Footer.Add(New.User(), "10"); // Login and dashboard links

    /* Last bit of code to prep the layout wrapper
    ***************************************************************/

    Model.Id = "layout-wrapper";
    var tag = Tag(Model, "div"); // using Tag so the layout div gets the classes, id and other attributes added to the Model
}

@tag.StartElement        
<a name="top"></a>
    <div id="SiteHeader">
        &nbsp;
    </div>
    <div id="PageContainer">
        <div style="position: absolute; Left:-80px; top:-88px;z-index:1000;">
            <img id="bird" title="Pheasant" src="/Themes/TheFarmsBlogs/Styles/Images/PositionedImages/pheasant.gif" />
        </div>

        <div class="SiteMenu"><p>Hello Menu</p></div>
        <div id="Specialized">  
        <div id="PageName">
            <!-- 
                PageName NOT in use!
             -->
        </div>

        @if (Model.RightColumn != null) {
        <div id="RightCol">
            @Zone(Model.RightColumn)
        </div>
        }
        <!-- Page divided into two main columns, of which the left column is subdivided as necessary -->
        <div id="LeftCol">
            <div id="PageBanner">
                <div id="PageBannerLeft">

                    @if (Model.MainImage != null) {
                    <div id="PageBannerImage">
                        @Zone(Model.MainImage)
                    </div>
                    }
                    @if(Model.TheStrip != null) {
                    <div id="TheStrip">
                        @Zone(Model.TheStrip)
                    </div>
                    }                   
                </div>
            </div>            
            <div id="SpecializedContent">
            @if(@Model.content != null)
            {
                @Zone(Model.content)
            }
            </div>
        </div>
        <div id="SpecializedFooter">
            &nbsp;
        </div>
    </div>

    <div id="PageFooter">
        &nbsp;
        @if (Model.FooterPage != null){ 
            @Zone(Model.FooterPage)
        }
    </div>
</div>
<div id="SiteFooter">
    @Display(Model.Footer)
    The Farms Ltd - &copy; 2007
</div>        
@tag.EndElement

PS:エラーの原因を排除するために少しずつ有効にしているだけなので、ブランディングと名誉のバッジはコメントアウトされています。ライブサイトになります。

補遺:

以下のBertrandLeRoyの回答を参照してください。Orchard.Usersモジュールには、大文字のCを含むコンテンツゾーンが必要です。これにより、問題はすぐに解決しました。

Bertrandの応答は暫定的なものだったので、これを追加しました。問題はゾーンの名前であることを強調したいと思いました。

4

1 に答える 1

5

Orchard.Usersで、Controllers/AccountController.csを探します。そこには、ログオンアクションがあります。LogOnシェイプを作成し、それをシェイプ結果に配置します。次に、これはViews / LogOn.cshtmlテンプレートとして解決されます(同じ名前のファイルをドロップするだけでテーマを上書きできます。たとえば、元のファイルのコピーを微調整できます)。ログオンテンプレートは、テーマのレイアウト内のコンテンツゾーンにレンダリングされます。これはあなたの質問に答えますか?

あなたが犯した間違いは、コンテンツゾーンのコンテンツに名前を付けることだったと思います(大文字と小文字を区別してください)。

于 2012-05-17T18:28:01.450 に答える