[TYPO3-core] RFC: fix feature request #568

Wolfgang Klinger wolfgang at stufenlos.net
Mon Feb 20 14:49:51 CET 2006


 *hiya!*

 Documentation changes for the new matchcondition stuff.

 TSref, Chapter 4 Conditions
 http://typo3.org/documentation/document-library/references/doc_core_tsref/current/view/4/1/

 Section: General note (or similar)
--------
You may combine several conditions with two operators:
&& (and), || (or)
Alternatively you may use "AND" and "OR" (case insensitive) 
instead of "&&" and "||".


Examples:
[browser = msie] && [system = win]
[browser = msie] AND [system = win]
These two equal conditions will match if you browse the website with
Internet Explorer on Windows (but not on Mac)

[browser = opera] [browser = netscape]
[browser = opera] || [browser = netscape]
[browser = opera] OR [browser = netscape]
[browser = opera] or [browser = netscape]
These four will match if you browse the website with either 
Opera or Netscape

[browser = msie] or [browser = netscape] && [version = >4]
This will match if you browse the website with either Internet Explorer
or Netscape. If it's Netscape the version must be above 4.


This applies to all conditions.
--------


 bye
 Wolfgang





More information about the TYPO3-team-core mailing list