themes/oxygen/toolbar.tpl
author Dan
Mon, 16 Feb 2009 16:17:25 -0500
changeset 832 7152ca0a0ce9
parent 413 6607cd646d6d
child 1227 bdac73ed481e
permissions -rw-r--r--
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message) - Pages are now stored with an extra metadata field called page_format which is "wikitext" or "xhtml" - New $flags parameter + RENDER_* constants added that control RenderMan::render() behavior - Several other changes: * Added a sprite API for Javascript and made editor use sprites when possible * Removed a number of config options from the default install schema, replaced with second parameter to getConfig() calls * MessageBox in editor mostly replaced with miniPrompt * A few bugfixes related to password changes (registration didn't even work) * Rewrote the bitfield compression algorithm used to serialize allowed MIME types * Fixed some typos in language files and strings * Fixed a Text_Wiki bug in Heading parser

<!-- Stuff related to toolbars and clickable buttons.
     The plan was to use this on the toolbar for most pages. Never made it into the release,
     but still provided as an otherwise-unused component for plugins to make use of.
     -->

<!-- VAR toolbar_start -->
  <div class="toolbar">
  <ul>
<!-- ENDVAR toolbar_start -->
<!-- VAR toolbar_button -->
  <li>
    <a title="{TITLE}" {FLAGS}>
      <!-- IFSET SPRITE -->
        {SPRITE}
      <!-- BEGINELSE SPRITE -->
        <!-- IFSET IMAGE -->
          <!-- BEGINNOT no_image -->
            <img alt="{TITLE}" src="{IMAGE}" />
          <!-- END no_image -->
        <!-- END IMAGE -->
      <!-- END SPRITE -->
      <!-- BEGIN show_title -->
        <!-- BEGIN no_image -->
          <span class="noimage">{TITLE}</span>
        <!-- BEGINELSE no_image -->
          <span>{TITLE}</span>
        <!-- END no_image -->
      <!-- END show_title -->
    </a>
  </li>
<!-- ENDVAR toolbar_button -->
<!-- VAR toolbar_label -->
  <li>
    <span>{TITLE}</span>
  </li>
<!-- ENDVAR toolbar_label -->
<!-- VAR toolbar_end -->
  </ul>
  </div>
<!-- ENDVAR toolbar_end -->

<!-- VAR toolbar_vert_start -->
  <div class="toolbar_vert">
  <ul>
<!-- ENDVAR toolbar_vert_start -->
<!-- VAR toolbar_vert_button -->
  <li>
    <a title="{TITLE}" {FLAGS}>
      <img alt="{TITLE}" src="{IMAGE}" />
      <span>{TITLE}</span>
    </a>
  </li>
<!-- ENDVAR toolbar_vert_button -->
<!-- VAR toolbar_vert_label -->
  <li>
    <span>{TITLE}</span>
  </li>
<!-- ENDVAR toolbar_vert_label -->
<!-- VAR toolbar_vert_end -->
  </ul>
  </div>
<!-- ENDVAR toolbar_vert_end -->