Changeset 17597


Ignore:
Timestamp:
2008-10-24T11:00:08+13:00 (16 years ago)
Author:
oranfry
Message:

untested changes to exclude sourcecode from the binary release, use nicer target names and icons

Location:
release-kits
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • release-kits/lirk2/ant-scripts/build.xml

    r17466 r17597  
    1515    <property name="rk.home" value="${lirk2.home}" />
    1616    <property name="rk.os" value="linux" />
     17    <property name="os.suffix" value="linux"/>
    1718   
    1819    <!-- IMPORT OTHER ANT SCRIPTS -->
     
    2021    <import file="shared-ant-scripts/operations-on-gli.xml"/>
    2122    <import file="../greenstone2/ant-scripts/rk2-targets.xml"/>
     23
    2224    <import file="compile.xml"/>
    2325    <import file="create-distribution.xml"/>
  • release-kits/lirk2/ant-scripts/create-installer.xml

    r17519 r17597  
    55        <antcall target="copy-installer-files"/>
    66        <antcall target="make-installer-files-concrete"><param name="java.os" value="linux"/></antcall> <!-- from rk2-targets -->
    7         <antcall target="compile-installer"/>
     7        <antcall target="compile-binary-installer"/> <!-- from init -->
     8        <antcall target="compile-minimal-installer"/> <!-- from init -->
     9        <antcall target="compile-source-installer"/> <!-- from init -->
    810    </target>
    911
    1012    <target name="copy-installer-files">
    11         <echo>Copying installer files</echo>
     13
    1214        <mkdir dir="${basedir}/installer/classes"/>
    1315        <copy todir="${basedir}/installer" file="${lirk2.home}/installer/antinstall-config.xml" overwrite="true"/>
     
    2830    </target>
    2931
    30     <target name="compile-installer">
    31 
    32         <!-- create the full installer -->
    33         <installer file="${basedir}/installer/Greenstone-${version}-linux.jar"
    34                 compress="true"
    35                 extractType="NonExtractor"
    36                 installConfig="${basedir}/installer/antinstall-config.xml"
    37                 buildFile="${basedir}/installer/build.xml"
    38                 antInstallLib="${lirk2.home}/packages/ant-installer/lib"
    39                 antLib="${lirk2.home}/packages/ant/lib"
    40                 validateConfig="true"
    41                 failOnError="false"
    42                 icons="bluecurve">
    43 
    44             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    45             <zipfileset dir="${basedir}/components" includes="*.lzma"/>
    46 
    47         </installer>
    48 
    49         <dcff
    50             file="${basedir}/installer/antinstall-config.xml"
    51             startTag=".*&lt;!-- start full --&gt;"
    52             endTag=".*&lt;!-- end full --&gt;"/>
    53 
    54         <!-- create the minimal installer -->
    55         <installer file="${basedir}/installer/Greenstone-${version}-linux-minimal.jar"
    56                 compress="true"
    57                 extractType="NonExtractor"
    58                 installConfig="${basedir}/installer/antinstall-config.xml"
    59                 buildFile="${basedir}/installer/build.xml"
    60                 antInstallLib="${lirk2.home}/packages/ant-installer/lib"
    61                 antLib="${lirk2.home}/packages/ant/lib"
    62                 validateConfig="true"
    63                 failOnError="false"
    64                 icons="bluecurve">
    65 
    66             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    67             <zipfileset dir="${basedir}/components" includes="core.lzma"/>
    68 
    69         </installer>
    70 
    71 
    72     </target>
    73 
    7432</project>
  • release-kits/lirk2/installer/antinstall-config.xml

    r17576 r17597  
    5252            force="true"/>
    5353
     54        <!-- start sourcecode -->
    5455        <target
    5556            target="Installing Source Code"
     
    5758            defaultValue="false"
    5859            displayText=""/>
     60        <!-- end sourcecode -->
    5961
    6062    </page>
     
    6567    </page>
    6668
    67     <page type="progress" name="progress" showTargets="true" displayText=""></page>
     69    <page type="progress" name="progress" showTargets="true" displayText=""/>
    6870
    6971</installer>
  • release-kits/mark2/ant-scripts/build.xml

    r17453 r17597  
    99
    1010<project name="mark2-build" default="mark2">
    11 
    1211
    1312    <!-- CONSTANTS -->
     
    4544    </target>
    4645
     46    <property name="os.suffix" value="MacOS-${processor}"/>
     47
    4748    <!-- THE MAIN TARGET -->
    4849    <target name="mark2" depends="init,mark2-init">
  • release-kits/mark2/ant-scripts/create-installer.xml

    r17453 r17597  
    55        <antcall target="copy-installer-files"/>
    66        <antcall target="make-installer-files-concrete"/> <!-- from rk2-targets -->
    7         <antcall target="compile-installer"/>
     7        <antcall target="compile-binary-installer"/> <!-- from init -->
     8        <antcall target="compile-minimal-installer"/> <!-- from init -->
     9        <antcall target="compile-source-installer"/> <!-- from init -->
    810    </target>
    911
    1012    <target name="copy-installer-files">
    11         <echo>Copying installer files</echo>
    1213        <mkdir dir="${basedir}/installer/classes"/>
    1314        <copy todir="${basedir}/installer" file="${mark2.home}/installer/antinstall-config.xml" overwrite="true"/>
     
    2627    </target>
    2728
    28     <target name="compile-installer">
    29         <installer file="${basedir}/installer/Greenstone-${version}-MacOS-${processor}.jar"
    30                 compress="true"
    31                 extractType="NonExtractor"
    32                 installConfig="${basedir}/installer/antinstall-config.xml"
    33                 buildFile="${basedir}/installer/build.xml"
    34                 antInstallLib="${mark2.home}/packages/ant-installer/lib"
    35                 antLib="${mark2.home}/packages/ant/lib"
    36                 validateConfig="true"
    37                 failOnError="false"
    38                 icons="bluecurve">
    39 
    40             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    41             <zipfileset dir="${basedir}/components" includes="*.lzma"/>
    42         </installer>
    43 
    44         <installer file="${basedir}/installer/Greenstone-${version}-MacOS-${processor}-minimal.jar"
    45                 compress="true"
    46                 extractType="NonExtractor"
    47                 installConfig="${basedir}/installer/antinstall-config.xml"
    48                 buildFile="${basedir}/installer/build.xml"
    49                 antInstallLib="${mark2.home}/packages/ant-installer/lib"
    50                 antLib="${mark2.home}/packages/ant/lib"
    51                 validateConfig="true"
    52                 failOnError="false"
    53                 icons="bluecurve">
    54 
    55             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    56             <zipfileset dir="${basedir}/components" includes="core.lzma"/>
    57         </installer>
    58 
    59     </target>
    60 
    6129</project>
  • release-kits/mark2/installer/antinstall-config.xml

    r17576 r17597  
    5252            displayText=""/>
    5353
     54        <!-- start sourcecode -->
    5455        <target
    5556            target="Installing Source Code"
     
    5758            defaultValue="false"
    5859            displayText=""/>
     60        <!-- end sourcecode -->
    5961
    6062    </page>
     
    6567    </page>
    6668
    67     <page type="progress" name="progress" showTargets="false" displayText=""></page>
     69    <page type="progress" name="progress" showTargets="true" displayText=""/>
    6870
    6971</installer>
  • release-kits/mark2/installer/build.xml

    r17576 r17597  
    3434
    3535        <!-- install files -->
    36         <echo message="Installing Core Files"/>
     36        <echo message="Installing Core System"/>
    3737        <unzip src="${antinstaller.jar}" dest="${installDir}">
    3838            <patternset>
  • release-kits/mark3/ant-scripts/build.xml

    r17466 r17597  
    4444    </target>
    4545
     46    <property name="os.suffix" value="MacOS-${processor}"/>
     47
    4648    <!-- THE MAIN TARGET -->
    4749    <target name="mark3" depends="init,mark3-init">
  • release-kits/mark3/ant-scripts/create-installer.xml

    r17453 r17597  
    55        <antcall target="copy-installer-files"/>
    66        <antcall target="make-installer-files-concrete"/> <!-- from rk3-targets -->
    7         <antcall target="compile-installer"/>
     7        <antcall target="compile-binary-installer"/> <!-- from init -->
     8        <antcall target="compile-minimal-installer"/> <!-- from init -->
     9        <antcall target="compile-source-installer"/> <!-- from init -->
    810    </target>
    911
    1012    <target name="copy-installer-files">
    11         <echo>Getting things ready to compile the installer</echo>
    1213        <copy todir="${basedir}/installer" file="${mark3.home}/installer/antinstall-config.xml" overwrite="true" />
    1314        <copy todir="${basedir}/installer" file="${mark3.home}/installer/build.xml" overwrite="true" />
     
    2021    </target>
    2122
    22     <target name="compile-installer">
    23 
    24         <installer file="${basedir}/installer/Greenstone-${version}-MacOS-${processor}.jar"
    25                 compress="true"
    26                 extractType="NonExtractor"
    27                 installConfig="${basedir}/installer/antinstall-config.xml"
    28                 buildFile="${basedir}/installer/build.xml"
    29                 antInstallLib="${mark3.home}/packages/ant-installer/lib"
    30                 antLib="${mark3.home}/packages/ant/lib"
    31                 validateConfig="true"
    32                 failOnError="false"
    33                 icons="bluecurve">
    34             <zipfileset dir="${basedir}/installer/classes" includes="**/*" /> <!-- installer classes -->
    35             <zipfileset dir="${basedir}/components" includes="*.lzma"/>
    36         </installer>
    37 
    38         <installer file="${basedir}/installer/Greenstone-${version}-MacOS-${processor}-minimal.jar"
    39                 compress="true"
    40                 extractType="NonExtractor"
    41                 installConfig="${basedir}/installer/antinstall-config.xml"
    42                 buildFile="${basedir}/installer/build.xml"
    43                 antInstallLib="${mark3.home}/packages/ant-installer/lib"
    44                 antLib="${mark3.home}/packages/ant/lib"
    45                 validateConfig="true"
    46                 failOnError="false"
    47                 icons="bluecurve">
    48             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    49             <zipfileset dir="${basedir}/components" includes="core.lzma"/>
    50         </installer>
    51 
    52 
    53     </target>
    54 
    5523</project>
  • release-kits/mark3/installer/antinstall-config.xml

    r17538 r17597  
    4646
    4747        <target
    48             target="install-core-components"
     48            target="Installing Core System"
    4949            diskRequirement="@component.size.core@"
    5050            defaultValue="true"
     
    5252            force="true"/>
    5353
     54        <!-- start bundled components -->
    5455        <target
    55             target="install-tomcat"
     56            target="Installing Tomcat"
    5657            diskRequirement="@component.size.tomcat@"
    5758            defaultValue="true"
     
    5960
    6061        <target
    61             target="install-ant"
     62            target="Installing Ant"
    6263            diskRequirement="@component.size.ant@"
    6364            defaultValue="true"
    6465            displayText=""/>
     66        <!-- end bundled components -->
    6567
     68        <!-- start sourcecode -->
    6669        <target
    67             target="install-source-code"
     70            target="Installing Source Code"
    6871            diskRequirement="@component.size.sourcecode@"
    6972            defaultValue="false"
    7073            displayText=""/>
     74        <!-- end sourcecode -->
    7175
    7276    </page>
    7377
    74     <page type="input" name="tomcat-config" ifProperty="(${install-tomcat}==true)" displayText="">
     78    <page type="input" name="tomcat-config" ifProperty="(${Installing Tomcat}==true)" displayText="">
    7579
    7680        <text property="tomcat.server" defaultValue="localhost" displayText=""/>
     
    8084    </page>
    8185
    82     <page type="progress" name="progress" showTargets="false" target="cleanuptarget" displayText="">
    83     </page>
     86    <page type="progress" name="progress" showTargets="true" displayText=""/>
    8487
    8588</installer>
  • release-kits/mark3/installer/build.xml

    r17468 r17597  
    1717    <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
    1818
    19     <target name="install-core-components" depends="">
     19    <target name="Installing Core System" depends="">
    2020
    2121        <!-- create the installation directory -->
     
    8383
    8484    <!-- Source -->
    85     <target name="install-source-code" depends="">
     85    <target name="Installing Source Code" depends="">
    8686        <echo>Installing Source Code</echo>
    8787        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="sourcecode.lzma"/></patternset></unzip>
     
    9292    </target>
    9393
    94     <target name="install-tomcat">
     94    <target name="Installing Tomcat">
    9595        <echo message="Installing Tomcat (packages/tomcat)"/>
    9696        <mkdir dir="packages"/>
     
    118118    </target>
    119119
    120     <target name="install-ant">
     120    <target name="Installing Ant">
    121121
    122122        <!-- extract the files -->
     
    134134    </target>
    135135
    136 
    137 
    138     <target name="cleanuptarget">
    139     </target>
    140    
    141 
    142136</project>
  • release-kits/wirk2/ant-scripts/build.xml

    r17466 r17597  
    1818    <property name="rk.home" value="${wirk2.home}" />
    1919    <property name="rk.os" value="windows" />
     20    <property name="os.suffix" value="win32"/>
    2021   
    2122    <!-- IMPORT OTHER ANT SCRIPTS -->
  • release-kits/wirk2/ant-scripts/create-installer.xml

    r17583 r17597  
    55        <antcall target="copy-installer-files"/>
    66        <antcall target="make-installer-files-concrete"><param name="java.os" value="windows"/></antcall> <!-- from rk2-targets -->
    7         <antcall target="compile-installer"/>
     7        <antcall target="compile-binary-installer"/> <!-- from init -->
     8        <antcall target="compile-minimal-installer"/> <!-- from init -->
     9        <antcall target="compile-source-installer"/> <!-- from init -->
    810    </target>
    911
    1012    <target name="copy-installer-files">
    11         <echo>Copying installer files</echo>
     13
    1214        <mkdir dir="${basedir}/installer/classes"/>
    1315        <copy todir="${basedir}/installer" file="${wirk2.home}/installer/antinstall-config.xml" overwrite="true"/>
     
    2729       
    2830    </target>
    29 
    30     <target name="compile-installer">
    31 
    32         <!-- binary installer -->
    33         <copy file="${basedir}/installer/antinstall-config.xml" tofile="${basedir}/installer/antinstall-config-binary.xml"/>
    34         <dcff file="${basedir}/installer/antinstall-config-binary.xml" startTag=".*&lt;!-- start sourcecode --&gt;.*" endTag=".*&lt;!-- end sourcecode --&gt;.*" />     
    35         <installer file="${basedir}/installer/greenstone-${version}-win32.jar"
    36             compress="true"
    37             extractType="NonExtractor"
    38             installConfig="${basedir}/installer/antinstall-config-binary.xml"
    39             buildFile="${basedir}/installer/build.xml"
    40             antInstallLib="${wirk2.home}/packages/ant-installer/lib"
    41             antLib="${wirk2.home}/packages/ant/lib"
    42             validateConfig="true"
    43             icons="bluecurve">
    44            
    45             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    46             <zipfileset dir="${basedir}/components" includes="*.lzma" excludes="sourcecode.lzma" />
    47         </installer>
    48        
    49         <!-- minimal installer -->
    50         <copy file="${basedir}/installer/antinstall-config.xml" tofile="${basedir}/installer/antinstall-config-minimal.xml"/>
    51         <dcff file="${basedir}/installer/antinstall-config-minimal.xml" startTag=".*&lt;!-- start bundled components --&gt;.*" endTag=".*&lt;!-- end bundled components --&gt;.*" />
    52         <dcff file="${basedir}/installer/antinstall-config-minimal.xml" startTag=".*&lt;!-- start sourcecode --&gt;.*" endTag=".*&lt;!-- end sourcecode --&gt;.*" />
    53         <installer file="${basedir}/installer/Greenstone-${version}-win32-minimal.jar"
    54             compress="true"
    55             extractType="NonExtractor"
    56             installConfig="${basedir}/installer/antinstall-config-minimal.xml"
    57             buildFile="${basedir}/installer/build.xml"
    58             antInstallLib="${wirk2.home}/packages/ant-installer/lib"
    59             antLib="${wirk2.home}/packages/ant/lib"
    60             validateConfig="true"
    61             icons="bluecurve">
    62            
    63             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    64             <zipfileset dir="${basedir}/components" includes="core.lzma" />
    65         </installer>
    66        
    67     </target>
    6831   
    6932</project>
  • release-kits/wirk2/installer/antinstall-config.xml

    r17583 r17597  
    7272            defaultValue="true"
    7373            displayText=""/>
     74
    7475        <target
    7576            target="Installing Ghostscript"
     
    9495    </page>
    9596
    96     <page type="progress" name="progress" showTargets="true" displayText=""></page>
     97    <page type="progress" name="progress" showTargets="true" displayText=""/>
    9798
    9899</installer>
  • release-kits/wirk3/ant-scripts/build.xml

    r17466 r17597  
    1818    <property name="rk.home" value="${wirk3.home}" />
    1919    <property name="rk.os" value="windows" />
     20    <property name="os.suffix" value="win32"/>
    2021
    2122    <!-- IMPORT OTHER ANT SCRIPTS -->
  • release-kits/wirk3/ant-scripts/create-installer.xml

    r17538 r17597  
    55        <antcall target="copy-installer-files"/>
    66        <antcall target="make-installer-files-concrete"><param name="java.os" value="windows"/></antcall> <!-- from rk3-targets -->
    7         <antcall target="compile-installer"/>
     7        <antcall target="compile-binary-installer"/> <!-- from init -->
     8        <antcall target="compile-minimal-installer"/> <!-- from init -->
     9        <antcall target="compile-source-installer"/> <!-- from init -->
    810    </target>
    911
    1012    <target name="copy-installer-files">
    11 
    12         <echo>Getting things ready to compile the installer</echo>
    1313
    1414        <!-- the installer descriptors -->
     
    3737
    3838    </target>
    39 
    40     <target name="compile-installer">
    41 
    42         <installer file="${basedir}/installer/Greenstone-${version}-win32.jar"
    43                 compress="true"
    44                 extractType="NonExtractor"
    45                 installConfig="${basedir}/installer/antinstall-config.xml"
    46                 buildFile="${basedir}/installer/build.xml"
    47                 antInstallLib="${wirk3.home}/packages/ant-installer/lib"
    48                 antLib="${wirk3.home}/packages/ant/lib"
    49                 validateConfig="true"
    50                 icons="bluecurve">
    51 
    52             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    53             <zipfileset dir="${basedir}/components" includes="*.lzma" />
    54            
    55         </installer>
    56 
    57         <dcff file="${basedir}/installer/antinstall-config.xml" startTag=".*&lt;!-- start full --&gt;.*" endTag=".*&lt;!-- end full --&gt;.*" />
    58        
    59         <installer file="${basedir}/installer/Greenstone-${version}-win32-minimal.jar"
    60                     compress="true"
    61                     extractType="NonExtractor"
    62                     installConfig="${basedir}/installer/antinstall-config.xml"
    63                     buildFile="${basedir}/installer/build.xml"
    64                     antInstallLib="${wirk3.home}/packages/ant-installer/lib"
    65                     antLib="${wirk3.home}/packages/ant/lib"
    66                     validateConfig="true"
    67                     icons="bluecurve">
    68                 <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    69                 <zipfileset dir="${basedir}/components" includes="core.lzma" />
    70         </installer>
    71     </target>
    72 
    7339   
    7440</project>
  • release-kits/wirk3/installer/antinstall-config.xml

    r17538 r17597  
    4646
    4747        <target
    48             target="install-core-components"
     48            target="Looking For Previous Installation"
     49            diskRequirement="x"
     50            defaultValue="true"
     51            displayText="x"
     52            force="true"
     53            hidden="true"/>
     54
     55        <target
     56            target="Installing Core System"
    4957            diskRequirement="@component.size.core@"
    5058            defaultValue="true"
     
    5361
    5462        <target
    55             target="install-start-menu-shortcuts"
     63            target="Installing Start Menu Shortcuts"
    5664            diskRequirement="~10 KB"
    5765            defaultValue="true"
    5866            displayText=""/>       
    5967
    60         <!-- start full -->
     68        <!-- start bundled components -->
    6169        <target
    62             target="install-tomcat"
     70            target="Installing Tomcat"
    6371            diskRequirement="@component.size.tomcat@"
    6472            defaultValue="true"
     
    6674
    6775        <target
    68             target="install-ant"
     76            target="Installing Ant"
    6977            diskRequirement="@component.size.ant@"
    7078            defaultValue="true"
     
    7280
    7381        <target
    74             target="install-imagemagick"
     82            target="Installing ImageMagick"
    7583            diskRequirement="@component.size.imagemagick@"
    7684            defaultValue="true"
     
    7886           
    7987        <target
    80             target="install-ghostscript"
     88            target="Installing Ghostscript"
    8189            diskRequirement="@component.size.ghostscript@"
    8290            defaultValue="true"
    8391            displayText=""/>
     92        <!-- end bundled components -->
    8493           
     94        <!-- start sourcecode -->
    8595        <target
    86             target="install-source-code"
     96            target="Installing Source Code"
    8797            diskRequirement="@component.size.sourcecode@"
    8898            defaultValue="false"
    8999            displayText=""/>
    90         <!-- end full -->
     100        <!-- end sourcecode -->
     101
    91102    </page>
    92103
    93     <!-- start full -->
    94     <page type="input" name="tomcat-config" ifProperty="(${install-tomcat}==true)" displayText="">
     104    <page type="input" name="tomcat-config" ifProperty="(${Installing Tomcat}==true)" displayText="">
    95105
    96106        <text property="tomcat.server" defaultValue="localhost" displayText=""/>
     
    99109
    100110    </page>
    101     <!-- end full -->
    102111
    103     <page type="progress" name="progress" showTargets="false" target="cleanuptarget" displayText="">
    104     </page>
     112    <page type="progress" name="progress" showTargets="true" displayText=""/>
    105113
    106114</installer>
  • release-kits/wirk3/installer/build.xml

    r17477 r17597  
    3232    <available file="${installDir}\installation.properties" property="is.overinstall"/>
    3333
    34     <target name="load-previous-props" if="is.overinstall">
    35         <property file="${installDir}\installation.properties"/>
    36     </target>
    37    
    38     <target name="install-core-components" depends="load-previous-props">
     34    <target name="Looking For Previous Installation" if="is.overinstall">
     35        <property file="${installDir}\etc\installation.properties"/>
     36    </target>
     37   
     38    <target name="Installing Core System">
    3939
    4040        <!-- figure out the start menu path (if not already set from previous installation) -->
     
    111111
    112112    <!-- Source -->
    113     <target name="install-source-code">
     113    <target name="Installing Source Code">
    114114        <echo message="Installing Source Code (src)"/>
    115115        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="sourcecode.lzma"/></patternset></unzip>
     
    120120    </target>
    121121
    122     <target name="install-tomcat">
     122    <target name="Installing Tomcat">
    123123       
    124124        <echo message="Installing Apache Tomcat"/>
     
    136136    </target>
    137137
    138     <target name="install-ant">
     138    <target name="Installing Ant">
    139139        <echo message="Installing Apache Ant"/>
    140140        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ant.lzma"/></patternset></unzip>
     
    145145    </target>
    146146
    147     <target name="install-imagemagick">
     147    <target name="Installing ImageMagick">
    148148        <echo message="Installing ImageMagick"/>
    149149        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
     
    154154    </target>
    155155
    156     <target name="install-ghostscript">
     156    <target name="Installing Ghostscript">
    157157        <echo message="Installing GhostScript"/>
    158158        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
     
    163163    </target>
    164164   
    165     <target name="cleanuptarget">
    166     </target>
    167    
    168     <target name="install-start-menu-shortcuts">
     165    <target name="Installing Start Menu Shortcuts">
    169166
    170167        <mkdir dir="${startmenu.path}\Documentation"/>
Note: See TracChangeset for help on using the changeset viewer.