Changeset 14650


Ignore:
Timestamp:
04/23/12 05:12:19 (13 months ago)
Author:
SvenDowideit
Message:

Item11783: use the new INCLUDE list: WARNING this will only work on >1.2.0

Location:
trunk/PatternSkin
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/PatternSkin/data/System/PatternSkin.txt

    r14629 r14650  
    176176|  Release: | %$RELEASE% | 
    177177|  History: | <!-- specify latest version first -->&nbsp; | 
     178|  23 Apr 2012: | v.5.5:  | Foswiki 1.2.0 release. Foswikitask:Item11783 - use new INCLUDE topic list feature | 
    178179|  06 Apr 2012: | v.5.4.19: Foswiki 1.1.5 release.  Minor documentation updates and changes for consistency %BR%\ 
    179180                   Foswikitask:Item11622: Add &lt;div> to revision information%BR%\ 
  • trunk/PatternSkin/lib/Foswiki/Contrib/PatternSkin.pm

    r14575 r14650  
    55 
    66our $VERSION = '$Rev$'; 
    7 our $RELEASE = '5.4.19'; 
     7our $RELEASE = '5.5.0'; 
    88our $SHORTDESCRIPTION = 
    99'Pattern skin provides a CSS based default look and feel - flexible and [[http://www.w3.org/][W3C]] compliant. Its layout and color scheme are designed to provide a nice, clean and productive editing environment'; 
  • trunk/PatternSkin/templates/view.pattern.tmpl

    r14250 r14650  
    7979}%%TMPL:DEF{"sig_textareabuttons"}%<div class="patternSigLine">%TMPL:P{"textareabuttons"}%<div class="foswikiClear"></div></div>%TMPL:END%%{ 
    8080--------------------------------------------------- 
    81 }%%TMPL:DEF{"horizontalnavigation"}%%IF{"istopic '%PATTERNSKIN_NAVIGATION_TOPIC%'" then="$percntINCLUDE{$quot%PATTERNSKIN_NAVIGATION_TOPIC%$quot section=$quotmain$quot warn=$quotoff$quot}$percnt"}%%TMPL:END%%{ 
     81}%%TMPL:DEF{"horizontalnavigation"}%%INCLUDE{"%PATTERNSKIN_NAVIGATION_TOPIC%" section="main" warn="off"}%%TMPL:END%%{ 
    8282--------------------------------------------------- 
    83 }%%TMPL:DEF{"metanavigation"}%%IF{"istopic '%PATTERNSKIN_NAVIGATION_TOPIC%'" then="$percntINCLUDE{$quot%PATTERNSKIN_NAVIGATION_TOPIC%$quot section=$quotmeta$quot warn=$quotoff$quot}$percnt"}%%TMPL:END% 
     83}%%TMPL:DEF{"metanavigation"}%%INCLUDE{"%PATTERNSKIN_NAVIGATION_TOPIC%" section="meta" warn="off"}%%TMPL:END% 
  • trunk/PatternSkin/templates/viewbottombar.pattern.tmpl

    r9164 r14650  
    22 
    33 
    4 %TMPL:DEF{"bottombarcontents"}%<div id="patternBottomBarContents"><div id="patternWebBottomBar">%IF{"istopic '%SYSTEMWEB%.WebBottomBar'" then="$percntINCLUDE{$quot%SYSTEMWEB%.WebBottomBar$quot}$percnt" else="$percntINCLUDE{$quot%SYSTEMWEB%.WebBottomBarExample$quot}$percnt"}%</div></div>%TMPL:END% 
     4%TMPL:DEF{"bottombarcontents"}%<div id="patternBottomBarContents"><div id="patternWebBottomBar">%INCLUDE{"%SYSTEMWEB%.WebBottomBar, %SYSTEMWEB%.WebBottomBarExample"}%</div></div>%TMPL:END% 
  • trunk/PatternSkin/templates/viewsidebar.pattern.tmpl

    r9164 r14650  
    1616%{ Please note that there must be a new line before the include of the WebLeftBar. Other wise the first bullet will not be displayed as a bullet. See Foswiki task Item410 }% 
    1717%TMPL:DEF{"websidebar"}%%TMPL:P{"sidebar:webindicator"}% 
    18 %IF{"istopic 'WebLeftBar'" then="$percntINCLUDE{$quot%WEB%.WebLeftBar$quot}$percnt" else="$percntINCLUDE{$quot%WEB%.WebLeftBarExample$quot}$percnt"}% 
     18%INCLUDE{"%WEB%.WebLeftBar, %WEB%.WebLeftBarExample"}% 
    1919%TMPL:END% 
    2020 
  • trunk/PatternSkin/templates/viewtopbar.pattern.tmpl

    r9164 r14650  
    11%{ to include a top bar on a page, just include this template in the page template }% 
    22 
    3 %TMPL:DEF{"topbar"}%<div id="patternTopBar"><div id="patternTopBarContentsWrapper"><div id="patternTopBarContents">%IF{"istopic '%SYSTEMWEB%.WebTopBar'" then="$percntINCLUDE{$quot%SYSTEMWEB%.WebTopBar$quot}$percnt" else="$percntINCLUDE{$quot%SYSTEMWEB%.WebTopBarExample$quot}$percnt"}%</div></div></div>%TMPL:END% 
     3%TMPL:DEF{"topbar"}%<div id="patternTopBar"><div id="patternTopBarContentsWrapper"><div id="patternTopBarContents">%INCLUDE{"%SYSTEMWEB%.WebTopBar, %SYSTEMWEB%.WebTopBarExample"}%</div></div></div>%TMPL:END% 
    44 
    55 
Note: See TracChangeset for help on using the changeset viewer.