Changeset 278

Show
Ignore:
Timestamp:
11/01/07 14:33:28 (1 year ago)
Author:
hans
Message:

#173 - Fixed documentation and updated XSLTParam to support a 'value' attribute.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.3/classes/phing/filters/XsltFilter.php

    r144 r278  
    287287     
    288288    /** 
     289     * Sets expression value (alias to the setExpression()) method.  
     290     * 
     291     * @param string $v 
     292     * @see setExpression() 
     293     */ 
     294    public function setValue($v) 
     295    { 
     296        $this->setExpression($v); 
     297    } 
     298     
     299        /** 
     300     * Gets expression value (alias to the getExpression()) method.  
     301     * 
     302     * @param string $v 
     303     * @see getExpression() 
     304     */ 
     305    public function getValue() 
     306    { 
     307        return $this->getExpression(); 
     308    } 
     309     
     310    /** 
    289311     * Sets expression value. 
    290312     * @param string $expr 
  • branches/2.3/docs/phing_guide/book/chapters/appendixes/AppendixB-CoreTasks.html

    r274 r278  
    18561856<p> 
    18571857Additionally, you can use <em>&lt;param&gt;</em> tags with a 
    1858 <em>name</em> and a <em>value</em> attribute. These parameters are then 
     1858<em>name</em> and a <em>expression</em> (or <em>value</em> alias) attribute. These parameters are then 
    18591859available from within the xsl style sheet. 
    18601860</p>