- Timestamp:
- 09/08/06 23:21:19 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Bui_Core/resources/packaging/nsis/installer.nsi.xsl
r6479 r6497 43 43 44 44 <xsl:template match="/app"> 45 <xsl:if test="count(setup/models/*)>0"> 45 <xsl:variable name="vNeedComponentPage" select="count(setup/models/*)>0 and (count(setup/models//@required)=0 or (count(setup/models//@required)>0 and count(setup/models//node()[@required='no'])>0))"/> 46 47 <xsl:if test="$vNeedComponentPage='true'"> 46 48 ; Components page setup 47 49 !define MUI_COMPONENTSPAGE_SMALLDESC … … 63 65 !insertmacro MUI_PAGE_STARTMENU Application $ICONS_GROUP 64 66 65 <xsl:if test="count(setup/models/*)>0"><!-- si on installe en meme temps un modèle, on insert la fenetre de choix d'installation-->67 <xsl:if test="$vNeedComponentPage='true'"> 66 68 ; Components page 67 ; WARNING! disabled temporarely because only SCb uses this. 68 ; !insertmacro MUI_PAGE_COMPONENTS 69 !insertmacro MUI_PAGE_COMPONENTS 69 70 </xsl:if> 70 71 … … 631 632 SectionGroup "$(strSecGrpModTitle_<xsl:value-of select="$vModelCode"/>)" <xsl:value-of select="$vModelCode"/> 632 633 <xsl:for-each select="package"> 633 Section " $(strSecPackTitle_<xsl:value-of select="concat($vModelCode, position())"/>_mod)" <xsl:value-of select="concat($vModelCode, position())"/>_mod634 Section "<xsl:if test="@required='yes'">-</xsl:if>$(strSecPackTitle_<xsl:value-of select="concat($vModelCode, position())"/>_mod)" <xsl:value-of select="concat($vModelCode, position())"/>_mod 634 635 SetDetailsPrint textonly 635 636 DetailPrint "$(strSecPackInstLog_<xsl:value-of select="concat($vModelCode, position())"/>_mod)" … … 639 640 </xsl:for-each> 640 641 <xsl:for-each select="wsp"> 641 Section " $(strSecWspTitle_<xsl:value-of select="concat($vModelCode, position())"/>_wsp)" <xsl:value-of select="concat($vModelCode, position())"/>_wsp642 Section "<xsl:if test="@required='yes'">-</xsl:if>$(strSecWspTitle_<xsl:value-of select="concat($vModelCode, position())"/>_wsp)" <xsl:value-of select="concat($vModelCode, position())"/>_wsp 642 643 SetDetailsPrint textonly 643 644 DetailPrint "$(strSecWspInstLog_<xsl:value-of select="concat($vModelCode, position())"/>_wsp)"
Note: See TracChangeset
for help on using the changeset viewer.