diff options
| author | Romain LE DISEZ <romain.git@ledisez.net> | 2009-07-23 18:08:57 +0200 | 
|---|---|---|
| committer | Romain LE DISEZ <romain.git@ledisez.net> | 2009-07-23 18:08:57 +0200 | 
| commit | 386130114b3e3a9cf1617a1ea62407f569ee391c (patch) | |
| tree | 4728e044dc755b79494101effd7fab4689d5289d /themes/default/views | |
| parent | 06fd89e8bcad2142f0b6158d5db7a91d2b6956d8 (diff) | |
| parent | 5999ccb512d65ad9ae06a0a5542eb1123b44e9db (diff) | |
Merge commit 'upstream/master'
Diffstat (limited to 'themes/default/views')
| -rw-r--r-- | themes/default/views/header.html.php | 2 | ||||
| -rw-r--r-- | themes/default/views/page.html.php | 36 | 
2 files changed, 19 insertions, 19 deletions
| diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php index 5428d9fd..c903edf5 100644 --- a/themes/default/views/header.html.php +++ b/themes/default/views/header.html.php @@ -4,7 +4,7 @@  <?= $header_text ?>  <? else: ?>  <a id="gLogo" href="<?= url::site("albums/1") ?>" title="<?= t("go back to the Gallery home") ?>"> -  <img width="107" height="48" alt="<?= t("Gallery logo: Your photos on your web site") ?>" src="<?= $theme->theme_url("images/logo.png") ?>" /> +  <img width="107" height="48" alt="<?= t("Gallery logo: Your photos on your web site") ?>" src="<?= $theme->url("images/logo.png") ?>" />  </a>  <? endif ?> diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index 181a2c46..66282bae 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -23,13 +23,13 @@          <? endif ?>        <? endif ?>      </title> -    <link rel="shortcut icon" href="<?= $theme->theme_url("images/favicon.ico") ?>" type="image/x-icon" /> -    <?= $theme->css("lib/yui/reset-fonts-grids.css") ?> -    <?= $theme->css("lib/superfish/css/superfish.css") ?> -    <?= $theme->css("lib/themeroller/ui.base.css") ?> -    <?= $theme->theme_css("css/screen.css") ?> +    <link rel="shortcut icon" href="<?= $theme->url("images/favicon.ico") ?>" type="image/x-icon" /> +    <?= $theme->css("yui/reset-fonts-grids.css") ?> +    <?= $theme->css("superfish/css/superfish.css") ?> +    <?= $theme->css("themeroller/ui.base.css") ?> +    <?= $theme->css("screen.css") ?>      <!--[if lt IE 8]> -    <link rel="stylesheet" type="text/css" href="<?= $theme->theme_url("css/fix-ie.css") ?>" +    <link rel="stylesheet" type="text/css" href="<?= $theme->url("css/fix-ie.css") ?>"            media="screen,print,projection" />      <![endif]-->      <? if ($theme->page_type == 'album'): ?> @@ -45,26 +45,26 @@      </style>        <? endif ?>      <? endif ?> -    <?= $theme->script("lib/jquery.js") ?> -    <?= $theme->script("lib/jquery.form.js") ?> -    <?= $theme->script("lib/jquery-ui.js") ?> -    <?= $theme->script("lib/gallery.common.js") ?> +    <?= $theme->script("jquery.js") ?> +    <?= $theme->script("jquery.form.js") ?> +    <?= $theme->script("jquery-ui.js") ?> +    <?= $theme->script("gallery.common.js") ?>      <? /* MSG_CANCEL is required by gallery.dialog.js */ ?>      <script type="text/javascript">      var MSG_CANCEL = "<?= t('Cancel') ?>";      </script> -    <?= $theme->script("lib/gallery.dialog.js") ?> -    <?= $theme->script("lib/gallery.form.js") ?> -    <?= $theme->script("lib/superfish/js/superfish.js") ?> -    <?= $theme->script("lib/jquery.localscroll.js") ?> -    <?= $theme->theme_script("js/ui.init.js") ?> +    <?= $theme->script("gallery.dialog.js") ?> +    <?= $theme->script("gallery.form.js") ?> +    <?= $theme->script("superfish/js/superfish.js") ?> +    <?= $theme->script("jquery.localscroll.js") ?> +    <?= $theme->script("ui.init.js") ?>      <? /* These are page specific, but if we put them before $theme->head() they get combined */ ?>      <? if ($theme->page_type == "photo"): ?> -    <?= $theme->script("lib/jquery.scrollTo.js") ?> -    <?= $theme->script("lib/gallery.show_full_size.js") ?> +    <?= $theme->script("jquery.scrollTo.js") ?> +    <?= $theme->script("gallery.show_full_size.js") ?>      <? elseif ($theme->page_type == "movie"): ?> -    <?= $theme->script("lib/flowplayer.js") ?> +    <?= $theme->script("flowplayer.js") ?>      <? endif ?>      <?= $theme->head() ?> | 
