Changeset 6497
- Timestamp:
- 09/08/06 23:21:19 (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
Bui_Core/resources/packaging/nsis/installer.nsi.xsl (modified) (4 diffs)
-
Bui_scBuilder/about.xml (modified) (1 diff)
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)" -
trunk/Bui_scBuilder/about.xml
r6413 r6497 86 86 </ant> 87 87 --> 88 <package name="modeling" code="modeling" type="wsppack" ant="${wspdir}/Bui_wspPack/builder/modeling/build.xml" target="All"/> <!-- @type=[wsppack|jar|xpi] -->88 <package name="modeling" code="modeling" type="wsppack" required="yes" ant="${wspdir}/Bui_wspPack/builder/modeling/build.xml" target="All"/> <!-- @type=[wsppack|jar|xpi] --> 89 89 <!-- 90 90 <package name="modeling" code="modeling" type="wsppack" dir="C:\scenari_dev3\releases" fileName="modeling1.0.0_RC3_060612-1552.wsppack"/>
Note: See TracChangeset
for help on using the changeset viewer.