Changeset 2238 in Sophya for trunk/ArchTOIPipe/TestPipes/xsl/makeMainConnect.xsl
- Timestamp:
- Oct 30, 2002, 11:18:28 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/TestPipes/xsl/makeMainConnect.xsl
r2220 r2238 10 10 // main genere automatiquement par xsl 11 11 // ne pas modifier 12 // derniere mise a jour : VF le 2 2/10/200212 // derniere mise a jour : VF le 29/10/2002 -- derniere version 13 13 14 14 // inclusions expat … … 205 205 <xsl:value-of select="@name"/> = <xsl:value-of select="$defaut"/>; 206 206 </xsl:if> 207 <xsl:if test="$typearg='string' or $typearg='char*' or $typearg='char' ">207 <xsl:if test="$typearg='string' or $typearg='char*' or $typearg='char' or $typearg='bool'"> 208 208 <xsl:value-of select="@name"/> = "<xsl:value-of select="$defaut"/>"; 209 209 </xsl:if> … … 223 223 <xsl:value-of select="@name"/> = atof(atts[i+1]); 224 224 </xsl:if> 225 <xsl:if test="$typearg='char' or $typearg='char*' or $typearg='string' ">225 <xsl:if test="$typearg='char' or $typearg='char*' or $typearg='string' or $typearg='bool'"> 226 226 <xsl:value-of select="@name"/> = atts[i+1]; 227 227 </xsl:if> … … 268 268 <xsl:value-of select="@name"/> = <xsl:value-of select="$defaut"/>; 269 269 </xsl:if> 270 <xsl:if test="$typearg='string' or $typearg='char*' or $typearg='char' ">270 <xsl:if test="$typearg='string' or $typearg='char*' or $typearg='char' or $typearg='bool'"> 271 271 <xsl:value-of select="@name"/> = "<xsl:value-of select="$defaut"/>"; 272 272 </xsl:if> … … 286 286 <xsl:value-of select="@name"/> = atof(atts[i+1]); 287 287 </xsl:if> 288 <xsl:if test="$typearg='char' or $typearg='char*' or $typearg='string' ">288 <xsl:if test="$typearg='char' or $typearg='char*' or $typearg='string' or $typearg='bool'"> 289 289 <xsl:value-of select="@name"/> = atts[i+1]; 290 290 </xsl:if>
Note:
See TracChangeset
for help on using the changeset viewer.