Changeset 6058 for trunk

Show
Ignore:
Timestamp:
11/14/11 13:50:45 (6 months ago)
Author:
mtld
Message:

updated docs

Location:
trunk/pustefix-docbook/src/docbkx/reference
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/pustefix-docbook/src/docbkx/reference/configuration.xml

    r6035 r6058  
    231231  </xml-generator> 
    232232   
     233  <!-- automatically generate searchengine sitemap file sitemaps.xml  
     234       (according to sitemaps protocol from http://www.sitemaps.org) --> 
     235  <searchengine-sitemap/> 
     236 
    233237  <!-- Sets the session tracking strategy. Default is 'COOKIE'. 
    234238       Alternatively you can set 'URL' to force session tracking 
  • trunk/pustefix-docbook/src/docbkx/reference/news.xml

    r6035 r6058  
    116116    </section> 
    117117 
     118    <section xml:id="news.0_18_2.sitemap"> 
     119      <title>Search-engine sitemap generation</title> 
     120      <para> 
     121        Pustefix now supports generating search-engine sitemaps according to the sitemaps protocol (see 
     122        <link xlink:href="http://www.sitemaps.org/protocol.html">Sitemaps protocol specification</link>). 
     123        Sitemap generation can be enabled by adding the <literal>&lt;searchengine-sitemap/&gt;</literal> element to the 
     124        project configuration (see <xref linkend="configuration.project.projectxml"/>). 
     125      </para> 
     126    </section> 
     127 
     128    <section xml:id="news.0_18_2.pagealts"> 
     129      <title>Direct page alternative linking</title> 
     130      <para> 
     131        In prior Pustefix versions links to page alternatives created with <literal>&lt;pfx:button&gt;</literal> referenced the logical page 
     132        and the application logic was responsible for detecting/setting the page alternative and thus triggering a redirect to the  
     133        according page alternative by Pustefix.  
     134      </para> 
     135      <para> 
     136        Now <literal>&lt;pfx:button&gt;</literal> supports directly setting the page alternative key using the <literal>altkey</literal> 
     137        attribute or <literal>&lt;pfx:altkey&gt;</literal> element. Thus Pustefix can directly reference the according page alternative 
     138        name without having to do a redirect (see <xref linkend="xslt.pfx.button"/>). 
     139      </para> 
     140    </section> 
     141 
     142   <section xml:id="news.0_18_2.oxm"> 
     143      <title>OXM support for BigDecimal and BigInteger</title> 
     144      <para> 
     145        Pustefix's object-to-XML mapping mechanism now can serialize BigDecimal and BigInteger objects. 
     146      </para> 
     147   </section> 
     148 
    118149  </section> 
    119150 
  • trunk/pustefix-docbook/src/docbkx/reference/xslt.xml

    r5794 r6058  
    219219        and builds up valid, url encoded query strings. 
    220220      </para> 
    221       <programlisting language="xml"><![CDATA[<pfx:button page="APage" pageflow="AFlow" jumptopage="APage" jumptopageflow="AFlow" forcestop="true|false|step" startwithflow="true|false"> 
    222   <!-- 
    223     Control the submit commands 
    224   --> 
     221      <programlisting language="xml"><![CDATA[<pfx:button page="APage" pageflow="AFlow" jumptopage="APage" jumptopageflow="AFlow"  
     222            forcestop="true|false|step" startwithflow="true|false" altkey="pageAlternativeKey"> 
     223  <!-- Control the submit commands --> 
    225224  <pfx:command page="APage" name="SUBWRP">prefix</pfx:command> 
     225 
     226  <!-- Supply additional parameters --> 
    226227  <pfx:argument name="AName">AValue</pfx:argument> 
     228   
    227229  <pfx:anchor frame="AFrame">AnAnchor</pfx:anchor> 
     230   
     231  <!-- Select a page alternative by key -->  
     232  <pfx:altkey>pageAlternativeKey</pfx:altkey> 
    228233 
    229234  <!-- 
     
    266271            <td>optional</td> 
    267272            <td>These attributes work the same as for form submit controls</td> 
     273          </tr> 
     274          <tr> 
     275            <td>altkey</td> 
     276            <td>optional</td> 
     277            <td>Select page alternative by key</td> 
    268278          </tr> 
    269279          <tr>