File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 267
267
<xsl : template name =" get-param-value-from-key" >
268
268
<xsl : param name =" parameter" />
269
269
<xsl : param name =" key" />
270
- <xsl : variable name =" entry-and-beyond-for-data-type " >
271
- <!-- Gets the config line for numeration for the specified data-type ...and everything beyond -->
270
+ <xsl : variable name =" entry-and-beyond" >
271
+ <!-- Gets the value corresponding to specified key ...and everything beyond -->
272
272
<xsl : value-of select =" substring-after(normalize-space($parameter), concat($key, ':'))" />
273
273
</xsl : variable >
274
- <!-- Then we further narrow to the exact numeration format type -->
274
+ <!-- Then we further narrow to just the key value -->
275
275
<xsl : choose >
276
- <xsl : when test =" contains($entry-and-beyond-for-data-type , ' ')" >
277
- <xsl : value-of select =" substring-before($entry-and-beyond-for-data-type , ' ')" />
276
+ <xsl : when test =" contains($entry-and-beyond, ' ')" >
277
+ <xsl : value-of select =" substring-before($entry-and-beyond, ' ')" />
278
278
</xsl : when >
279
279
<xsl : otherwise >
280
- <xsl : value-of select =" $entry-and-beyond-for-data-type " />
280
+ <xsl : value-of select =" $entry-and-beyond" />
281
281
</xsl : otherwise >
282
282
</xsl : choose >
283
283
</xsl : template >
You can’t perform that action at this time.
0 commit comments