Changeset 2513 for trunk/template/yoga


Ignore:
Timestamp:
Sep 9, 2008, 11:53:31 AM (16 years ago)
Author:
rvelices
Message:
  • fix typing error in index.tpl
  • added template smarty function known_script (e.g.{known_script id="x" src"y.js"}) - useful to avoid double inclusion of a script such as prototype,jquery,... when a template and plugin need it independently (see the use in admin.tpl for example)
  • removed unused themeconf.template_dir
Location:
trunk/template/yoga
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/index.tpl

    r2352 r2513  
    1111      <select onchange="document.location = this.options[this.selectedIndex].value;">
    1212        {foreach from=$image_orders item=image_order }
    13         <option value="{$image_order.URL}"{if $image_order.SELECTED} selected="selected"{/if}}>{$image_order.DISPLAY}</option>
     13        <option value="{$image_order.URL}"{if $image_order.SELECTED} selected="selected"{/if}>{$image_order.DISPLAY}</option>
    1414        {/foreach}
    1515      </select>
  • trunk/template/yoga/theme/Sylvia/themeconf.inc.php

    r2506 r2513  
    33  'template' => 'yoga',
    44  'theme' => 'Sylvia',
    5   'template_dir' => 'template/yoga',
    65  'icon_dir' => 'template/yoga/icon',
    76  'admin_icon_dir' => 'template/yoga/icon/admin',
    87  'mime_icon_dir' => 'template/yoga/icon/mimetypes/',
    9   'local_head' => '<!-- no theme specific head content -->',
     8  'local_head' => '',
    109);
    1110?>
  • trunk/template/yoga/theme/clear/themeconf.inc.php

    r1912 r2513  
    33  'template' => 'yoga',
    44  'theme' => 'clear',
    5   'template_dir' => 'template/yoga',
    65  'icon_dir' => 'template/yoga/icon',
    76  'admin_icon_dir' => 'template/yoga/icon/admin',
    87  'mime_icon_dir' => 'template/yoga/icon/mimetypes/',
    9   'local_head' => '<!-- no theme specific head content -->',
     8  'local_head' => '',
    109);
    1110?>
  • trunk/template/yoga/theme/dark/themeconf.inc.php

    r1912 r2513  
    33  'template' => 'yoga',
    44  'theme' => 'dark',
    5   'template_dir' => 'template/yoga',
    65  'icon_dir' => 'template/yoga/icon',
    76  'admin_icon_dir' => 'template/yoga/icon/admin',
    87  'mime_icon_dir' => 'template/yoga/icon/mimetypes/',
    9   'local_head' => '<!-- no theme specific head content -->',
     8  'local_head' => '',
    109);
    1110?>
  • trunk/template/yoga/theme/p0w0/themeconf.inc.php

    r1912 r2513  
    33  'template' => 'yoga',
    44  'theme' => 'p0w0',
    5   'template_dir' => 'template/yoga',
    65  'icon_dir' => 'template/yoga/icon',
    76  'admin_icon_dir' => 'template/yoga/icon/admin',
    87  'mime_icon_dir' => 'template/yoga/icon/mimetypes/',
    9   'local_head' => '<!-- no theme specific head content -->',
     8  'local_head' => '',
    109);
    1110?>
  • trunk/template/yoga/theme/wipi/themeconf.inc.php

    r1912 r2513  
    33  'template' => 'yoga',
    44  'theme' => 'wipi',
    5   'template_dir' => 'template/yoga',
    65  'icon_dir' => 'template/yoga/icon',
    76  'admin_icon_dir' => 'template/yoga/icon/admin',
    87  'mime_icon_dir' => 'template/yoga/icon/mimetypes/',
    9   'local_head' => '<!-- no theme specific head content -->',
     8  'local_head' => '',
    109);
    1110if ( !isset($lang['Theme: wipi']) )
Note: See TracChangeset for help on using the changeset viewer.