diff options
| author | root <root@sleepydogs.net> | 2009-09-13 09:01:55 -0700 | 
|---|---|---|
| committer | root <root@sleepydogs.net> | 2009-09-13 09:01:55 -0700 | 
| commit | c62d1f440f077ba806b7ff0c6b90ef89c79b2fd3 (patch) | |
| tree | b64f05e2a7bd8db7200e3c407904e255826b4cf2 /themes/default/views | |
| parent | b96ac1eb81b7ccd5bd050ffab0ca9ce1feec8f4f (diff) | |
| parent | caa2002d7777e0ceb884d4c628650804620ca2b6 (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'themes/default/views')
| -rw-r--r-- | themes/default/views/album.html.php | 10 | ||||
| -rw-r--r-- | themes/default/views/dynamic.html.php | 4 | ||||
| -rw-r--r-- | themes/default/views/footer.html.php | 11 | ||||
| -rw-r--r-- | themes/default/views/header.html.php | 28 | ||||
| -rw-r--r-- | themes/default/views/movie.html.php | 37 | ||||
| -rw-r--r-- | themes/default/views/page.html.php | 91 | ||||
| -rw-r--r-- | themes/default/views/photo.html.php | 12 | 
7 files changed, 102 insertions, 91 deletions
| diff --git a/themes/default/views/album.html.php b/themes/default/views/album.html.php index 65ea3381..01f7be50 100644 --- a/themes/default/views/album.html.php +++ b/themes/default/views/album.html.php @@ -2,8 +2,8 @@  <? // @todo Set hover on AlbumGrid list items for guest users ?>  <div id="gInfo">    <?= $theme->album_top() ?> -  <h1><?= p::purify($item->title) ?></h1> -  <div class="gDescription"><?= nl2br(p::purify($item->description)) ?></div> +  <h1><?= html::purify($item->title) ?></h1> +  <div class="gDescription"><?= nl2br(html::purify($item->description)) ?></div>  </div>  <ul id="gAlbumGrid"> @@ -19,8 +19,8 @@        <?= $child->thumb_img(array("class" => "gThumbnail")) ?>      </a>      <?= $theme->thumb_bottom($child) ?> -    <?= $theme->thumb_menu($child) ?> -    <h2><span></span><a href="<?= $child->url() ?>"><?= p::clean($child->title) ?></a></h2> +    <?= $theme->context_menu($child, "#gItemId-{$child->id} .gThumbnail") ?> +    <h2><span></span><a href="<?= $child->url() ?>"><?= html::purify($child->title) ?></a></h2>      <ul class="gMetadata">        <?= $theme->thumb_info($child) ?>      </ul> @@ -30,7 +30,7 @@    <? if ($user->admin || access::can("add", $item)): ?>    <? $addurl = url::file("index.php/simple_uploader/app/$item->id") ?>    <li><?= t("There aren't any photos here yet! <a %attrs>Add some</a>.", -            array("attrs" => "href=\"$addurl\" class=\"gDialogLink\"")) ?></li> +            array("attrs" => html::mark_clean("href=\"$addurl\" class=\"gDialogLink\""))) ?></li>    <? else: ?>    <li><?= t("There aren't any photos here yet!") ?></li>    <? endif; ?> diff --git a/themes/default/views/dynamic.html.php b/themes/default/views/dynamic.html.php index 2d122e69..9ed9d69b 100644 --- a/themes/default/views/dynamic.html.php +++ b/themes/default/views/dynamic.html.php @@ -3,7 +3,7 @@    <div id="gAlbumHeaderButtons">      <?= $theme->dynamic_top() ?>    </div> -  <h1><?= p::clean($title) ?></h1> +  <h1><?= html::clean($title) ?></h1>  </div>  <ul id="gAlbumGrid"> @@ -16,7 +16,7 @@             width="<?= $child->thumb_width ?>"             height="<?= $child->thumb_height ?>" />      </a> -    <h2><?= p::purify($child->title) ?></h2> +    <h2><?= html::purify($child->title) ?></h2>      <?= $theme->thumb_bottom($child) ?>      <ul class="gMetadata">        <?= $theme->thumb_info($child) ?> diff --git a/themes/default/views/footer.html.php b/themes/default/views/footer.html.php deleted file mode 100644 index 040a4062..00000000 --- a/themes/default/views/footer.html.php +++ /dev/null @@ -1,11 +0,0 @@ -<?php defined("SYSPATH") or die("No direct script access.") ?> -<?= $theme->footer() ?> -<? if ($footer_text = module::get_var("gallery", "footer_text")): ?> -<?= $footer_text ?> -<? endif ?> - -<? if (module::get_var("gallery", "show_credits")): ?> -<ul id="gCredits"> -  <?= $theme->credits() ?> -</ul> -<? endif ?> diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php deleted file mode 100644 index 5428d9fd..00000000 --- a/themes/default/views/header.html.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php defined("SYSPATH") or die("No direct script access.") ?> -<?= $theme->header_top() ?> -<? if ($header_text = module::get_var("gallery", "header_text")): ?> -<?= $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") ?>" /> -</a> -<? endif ?> - -<div id="gSiteMenu" style="display: none"> -<?= $theme->site_menu() ?> -</div> - -<?= $theme->header_bottom() ?> - -<? if (!empty($parents)): ?> -<ul class="gBreadcrumbs"> -  <? foreach ($parents as $parent): ?> -  <li> -    <a href="<?= url::site("albums/{$parent->id}?show=$item->id") ?>"> -      <?= p::purify($parent->title) ?> -    </a> -  </li> -  <? endforeach ?> -  <li class="active"><?= p::purify($item->title) ?></li> -</ul> -<? endif ?> diff --git a/themes/default/views/movie.html.php b/themes/default/views/movie.html.php index 66c80ded..910814dd 100644 --- a/themes/default/views/movie.html.php +++ b/themes/default/views/movie.html.php @@ -2,25 +2,36 @@  <div id="gItem">    <?= $theme->photo_top() ?> -  <ul id="gPager"> -    <li><?= t("%position of %total", array("position" => $position, "total" => $sibling_count)) ?></li> -    <? if ($previous_item): ?> -    <li><span class="ui-icon ui-icon-seek-prev"></span><a href="<?= $previous_item->url() ?>"><?= t("previous") ?></a></li> -    <? endif ?> -    <? if ($next_item): ?> -    <li><a href="<?= $next_item->url() ?>"><?= t("next") ?></a><span class="ui-icon ui-icon-seek-next"></span></li> -    <? endif ?> +  <ul class="gPager"> +    <li> +      <? if ($previous_item): ?> +      <a href="<?= $previous_item->url() ?>" class="gButtonLink ui-icon-left ui-state-default ui-corner-all"> +      <span class="ui-icon ui-icon-triangle-1-w"></span><?= t("previous") ?></a> +      <? else: ?> +      <a class="gButtonLink ui-icon-left ui-state-disabled ui-corner-all"> +      <span class="ui-icon ui-icon-triangle-1-w"></span><?= t("previous") ?></a> +      <? endif; ?> +    </li> +    <li class="gInfo"><?= t("%position of %total", array("position" => $position, "total" => $sibling_count)) ?></li> +    <li class="txtright"> +      <? if ($next_item): ?> +      <a href="<?= $next_item->url() ?>" class="gButtonLink ui-icon-right ui-state-default ui-corner-all"> +      <span class="ui-icon ui-icon-triangle-1-e"></span><?= t("next") ?></a> +      <? else: ?> +      <a class="gButtonLink ui-icon-right ui-state-disabled ui-corner-all"> +      <span class="ui-icon ui-icon-triangle-1-e"></span><?= t("next") ?></a> +      <? endif ?> +    </li>    </ul> +    <?= $item->movie_img(array("class" => "gMovie", "id" => "gMovieId-{$item->id}")) ?>    <div id="gInfo"> -    <h1><?= p::purify($item->title) ?></h1> -       <div><?= nl2br(p::purify($item->description)) ?></div> +    <h1><?= html::purify($item->title) ?></h1> +       <div><?= nl2br(html::purify($item->description)) ?></div>    </div> -  <script type="text/javascript"> -    var ADD_A_COMMENT = "<?= t("Add a comment") ?>"; -  </script>    <?= $theme->photo_bottom() ?> +  <?= $theme->context_menu($item, "#gMovieId-{$item->id}") ?>  </div> diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index 181a2c46..19d8cc00 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -10,26 +10,26 @@        <? else: ?>          <? if ($theme->item()): ?>            <? if ($theme->item()->is_album()): ?> -          <?= t("Browse Album :: %album_title", array("album_title" => p::clean($theme->item()->title))) ?> +          <?= t("Browse Album :: %album_title", array("album_title" => $theme->item()->title)) ?>            <? elseif ($theme->item()->is_photo()): ?> -          <?= t("Photo :: %photo_title", array("photo_title" => p::clean($theme->item()->title))) ?> +          <?= t("Photo :: %photo_title", array("photo_title" => $theme->item()->title)) ?>            <? else: ?> -          <?= t("Movie :: %movie_title", array("movie_title" => p::clean($theme->item()->title))) ?> +          <?= t("Movie :: %movie_title", array("movie_title" => $theme->item()->title)) ?>            <? endif ?>          <? elseif ($theme->tag()): ?> -          <?= t("Browse Tag :: %tag_title", array("tag_title" => p::clean($theme->tag()->name))) ?> +          <?= t("Browse Tag :: %tag_title", array("tag_title" => $theme->tag()->name)) ?>          <? else: /* Not an item, not a tag, no page_title specified.  Help! */ ?>            <?= t("Gallery") ?>          <? 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="<?= url::file("lib/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,27 @@      </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') ?>"; +    var MSG_CANCEL = <?= t('Cancel')->for_js() ?>;      </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.ajax.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() ?> @@ -75,7 +76,38 @@      <div id="doc4" class="yui-t5 gView">        <?= $theme->site_status() ?>        <div id="gHeader"> -        <?= new View("header.html") ?> +        <div id="gBanner"> +          <?= $theme->header_top() ?> +          <? if ($header_text = module::get_var("gallery", "header_text")): ?> +          <?= $header_text ?> +          <? else: ?> +          <a id="gLogo" href="<?= item::root()->url() ?>" title="<?= t("go back to the Gallery home")->for_html_attr() ?>"> +            <img width="107" height="48" alt="<?= t("Gallery logo: Your photos on your web site")->for_html_attr() ?>" src="<?= url::file("lib/images/logo.png") ?>" /> +          </a> +          <? endif ?> +          <div id="gSiteMenu"> +          <?= $theme->site_menu() ?> +          </div> +          <?= $theme->header_bottom() ?> +        </div> + +        <? if (!empty($parents)): ?> +        <ul class="gBreadcrumbs"> +          <? foreach ($parents as $parent): ?> +          <li> +            <!-- Adding ?show=<id> causes Gallery3 to display the page +                 containing that photo.  For now, we just do it for +                 the immediate parent so that when you go back up a +                 level you're on the right page. --> +            <a href="<?= $parent->url($parent == $theme->item()->parent() ? +                     "show={$theme->item()->id}" : null) ?>"> +              <?= html::purify($parent->title) ?> +            </a> +          </li> +          <? endforeach ?> +          <li class="active"><?= html::purify($theme->item()->title) ?></li> +        </ul> +        <? endif ?>        </div>        <div id="bd">          <div id="yui-main"> @@ -93,7 +125,16 @@          </div>        </div>        <div id="gFooter"> -        <?= new View("footer.html") ?> +        <?= $theme->footer() ?> +        <? if ($footer_text = module::get_var("gallery", "footer_text")): ?> +        <?= $footer_text ?> +        <? endif ?> + +        <? if (module::get_var("gallery", "show_credits")): ?> +        <ul id="gCredits"> +          <?= $theme->credits() ?> +        </ul> +        <? endif ?>        </div>      </div>      <?= $theme->page_bottom() ?> diff --git a/themes/default/views/photo.html.php b/themes/default/views/photo.html.php index bf4d9da3..b0096043 100644 --- a/themes/default/views/photo.html.php +++ b/themes/default/views/photo.html.php @@ -5,7 +5,7 @@  <script>    $(document).ready(function() {      $(".gFullSizeLink").click(function() { -      show_full_size("<?= $theme->item()->file_url() ?>", "<?= $theme->item()->width ?>", "<?= $theme->item()->height ?>"); +      $.gallery_show_full_size(<?= html::js_string($theme->item()->file_url()) ?>, "<?= $theme->item()->width ?>", "<?= $theme->item()->height ?>");        return false;      });    }); @@ -40,22 +40,20 @@    <div id="gPhoto">      <?= $theme->resize_top($item) ?>      <? if (access::can("view_full", $item)): ?> -    <a href="<?= $item->file_url() ?>" class="gFullSizeLink" title="<?= t("View full size") ?>"> +    <a href="<?= $item->file_url() ?>" class="gFullSizeLink" title="<?= t("View full size")->for_html_attr() ?>">        <? endif ?>        <?= $item->resize_img(array("id" => "gPhotoId-{$item->id}", "class" => "gResize")) ?>        <? if (access::can("view_full", $item)): ?>      </a>      <? endif ?>      <?= $theme->resize_bottom($item) ?> +    <?= $theme->context_menu($item, "#gPhotoId-{$item->id}") ?>    </div>    <div id="gInfo"> -    <h1><?= p::purify($item->title) ?></h1> -    <div><?= nl2br(p::purify($item->description)) ?></div> +    <h1><?= html::purify($item->title) ?></h1> +    <div><?= nl2br(html::purify($item->description)) ?></div>    </div> -  <script type="text/javascript"> -    var ADD_A_COMMENT = "<?= t("Add a comment") ?>"; -  </script>    <?= $theme->photo_bottom() ?>  </div> | 
