Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Chameleon / src / chameleon / tests / inputs / 022-switch.pt
Size: Mime:
<html>
  <body>
    <div tal:switch="True">
      <span tal:case="False">bad</span>
      <span tal:case="True">ok</span>
      <span tal:case="not not True">ok</span>
    </div>
    <div tal:switch="True">
      <span tal:case="False">bad</span>
      <span tal:case="default">ok</span>
    </div>
  </body>
</html>