Re: Main Document Test / META_HTTP_EQUIV-2

Roland Gülle wrote:
> Hi Francois,
> 
>> See inline below for a thought on the algorithm.
>> Feel free to commit the change.
> done - could you check my changes?
> 

Thanks Roland,

I slightly updated your code to make it totally consistent with what the 
PreprocessorResults.java class could generate in theory, because I 
realized that things could be more complex, e.g.:

  val1=valval1;param1=paramval1, val2, val3;param3

... would be rendered in the moki as:
  <header name="header-name">
   <element name="val1" value="valval1">
    <parameter name="param1" value="paramval1"/>
   </element>
   <element name="val2" />
   <element name="val3">
    <parameter name="param3" />
   </element>
  </header>

... with "value" attributes and "parameter" that may or may not be defined.

Francois.

Received on Tuesday, 13 January 2009 14:17:53 UTC