2011-05-09 57 views
0

我在用一把umbraco菜單宏觀問題..一把umbraco菜單宏創建重複

我的宏返回與li元素,每個頁面的UL。

<xsl:output method="xml" omit-xml-declaration="yes" /> 
<xsl:param name="currentPage"/> 
<xsl:variable name="level" select="1"/> 
<xsl:template match="/"> 

<ul> 
<xsl:for-each select="$currentPage/ancestor-or-self::* [@isDoc and @level=$level]/* [@isDoc and string(umbracoNaviHide) != '1']"> 
    <li> 
    <a href="{umbraco.library:NiceUrl(@id)}"> 
     <xsl:if test="$currentPage/ancestor-or-self::*/@id = current()/@id"> 
     <xsl:attribute name="class">selected</xsl:attribute> 
     </xsl:if> 
     <xsl:value-of select="@nodeName"/> 
    </a> 
    </li> 
</xsl:for-each> 
</ul> 
</xsl:template> 

,我所遇到的問題是,兩頁是重複的,即使我只有每一個和他們的聯繫工作,並點加時賽同一頁面。

我也有一個問題,那就是最後一個li元素被missplaced,但只能在Firefox ... Chrome和Safari瀏覽器做工精細...

任何想法?

+0

嗨貝克,任何機會,你可以發佈你的編輯作爲答案,所以很明顯,這個問題實際上已被回答,並在將來幫助人們。 :-) – 2011-06-05 16:11:44

回答

1

該解決方案煩人簡單,只是「重新發布整個網站」,所有問題都是歷史。我的猜測是,有些東西卡在緩存中...

+1

嗨,Bek,你能接受你自己的答案。對於將來的信息,XSLT針對umbraco.config文件運行,該文件是〜/ App_Data目錄中的XML文件緩存。有時這個緩存需要使用「重新發布整個站點」選項進行「有力的」更新。 – 2011-07-05 15:44:38

+0

完成,謝謝澄清! – bek 2011-08-03 11:44:13