1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/views/page.html.php

195 lines
9.0 KiB
PHP
Raw Normal View History

2011-05-24 11:28:35 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<? if ($theme->page_subtype == "photo"):
2011-06-13 09:39:51 +00:00
foreach (end($parents)->viewable()->children() as $i => $child)
if(!($child->is_album() || $child->is_movie()))
if($child->url() == $_SERVER['REQUEST_URI']):?>
<html><body>
<script type="text/javascript">window.location = '<? echo end($parents)->url() . "#img=$i&viewMode=detail&redirected=true"?>';</script>
2011-06-13 09:39:51 +00:00
</body></html>
<? die(0) ?>
<? endif ?>
<? endif ?>
2011-04-29 05:17:57 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2011-05-24 11:28:35 +00:00
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?= $theme->html_attributes() ?> xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<? $theme->start_combining("script,css") ?>
<title>
<? if ($page_title): ?>
<?= $page_title ?>
<? else: ?>
<? if ($theme->item()): ?>
<?= $theme->item()->title ?>
<? elseif ($theme->tag()): ?>
<?= t("Photos tagged with %tag_title", array("tag_title" => $theme->tag()->name)) ?>
<? else: /* Not an item, not a tag, no page_title specified. Help! */ ?>
<?= item::root()->title ?>
<? endif ?>
<? endif ?>
</title>
<link rel="shortcut icon"
href="<?= url::file(module::get_var("gallery", "favicon_url")) ?>"
type="image/x-icon" />
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<? if ($theme->page_type == "collection"): ?>
<? if ($thumb_proportion != 1): ?>
<? $new_width = round($thumb_proportion * 213) ?>
<? $new_height = round($thumb_proportion * 240) ?>
<style type="text/css">
.g-view #g-content #g-album-grid .g-item {
width: <?= $new_width ?>px;
height: <?= $new_height ?>px;
/* <?= $thumb_proportion ?> */
}
</style>
<? endif ?>
<? endif ?>
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<?= $theme->script("json2-min.js") ?>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<?= $theme->script("jquery-1.6.2.min.js") ?>
2011-05-24 11:28:35 +00:00
<?= $theme->script("jquery.form.js") ?>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<?= $theme->script("jquery-ui-1.8.16.custom.min.js") ?>
2011-05-24 11:28:35 +00:00
<?= $theme->script("gallery.common.js") ?>
<? /* MSG_CANCEL is required by gallery.dialog.js */ ?>
<script type="text/javascript">
var MSG_CANCEL = <?= t('Cancel')->for_js() ?>;
</script>
<?= $theme->script("gallery.ajax.js") ?>
<?= $theme->script("gallery.dialog.js") ?>
<?= $theme->script("superfish/js/superfish.js") ?>
<?= $theme->script("jquery.localscroll.js") ?>
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<? /* These are page specific but they get combined */ ?>
<? if ($theme->page_subtype == "photo"): ?>
<?= $theme->script("jquery.scrollTo.js") ?>
<?= $theme->script("gallery.show_full_size.js") ?>
<? elseif ($theme->page_subtype == "movie"): ?>
<?= $theme->script("flowplayer.js") ?>
<? endif ?>
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<?= $theme->head() ?>
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<? /* Theme specific CSS/JS goes last so that it can override module CSS/JS */ ?>
<?= $theme->script("ui.init.js") ?>
<?= $theme->script("jquery.parsequery.js") ?>
<?= $theme->script("imageflow.packed.js") ?>
2011-05-24 11:28:35 +00:00
<?= $theme->css("yui/reset-fonts-grids.css") ?>
<?= $theme->css("superfish/css/superfish.css") ?>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<?= $theme->css("dark-hive/jquery.ui.all.css") ?>
2011-05-24 11:28:35 +00:00
<?= $theme->css("screen.css") ?>
<?= $theme->css("imageflow.packed.css") ?>
2011-05-24 11:28:35 +00:00
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="<?= $theme->url("css/fix-ie.css") ?>"
media="screen,print,projection" />
<![endif]-->
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<!-- LOOKING FOR YOUR JAVASCRIPT? It's all been combined into the link below -->
<?= $theme->get_combined("script") ?>
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<!-- LOOKING FOR YOUR CSS? It's all been combined into the link below -->
<?= $theme->get_combined("css") ?>
<link rel="stylesheet" type="text/css" href="<?= $theme->url("css/pear.css") ?>" media="screen,print,projection" />
<link rel="stylesheet" type="text/css" href="<?= $theme->url("icons/pear.css") ?>" media="screen,print,projection" />
<script type="text/javascript" src="<?= $theme->url("js/pear.js"); ?>"></script>
2011-05-30 06:26:32 +00:00
<!-- Google analytics code -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '<? $account = module::get_var("th_pear4gallery3", "ga_code"); if ((!isset($account)) or ($account == "")) print "UA-23621420-1"; else print $account;?>']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
2011-04-29 05:17:57 +00:00
<body <?= $theme->body_attributes() ?>>
<?= new View("hoverView.html") ?>
<?= $theme->page_top() ?>
2011-05-24 11:28:35 +00:00
<?= $theme->site_status() ?>
<? if (($theme->page_subtype == "login") or ($theme->page_subtype == "reauthenticate")): ?>
<?= $content ?>
<? else: /*not login | reauthenticate */ ?>
<div class="pear">
2011-05-24 11:28:35 +00:00
<div id="gsNavBar" class="gcBorder1">
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<? if ($theme->item()): ?>
<div class="lNavBar">
<? if(!empty($parents)): ?>
<? foreach ($parents as $parent): ?>
<? if (!module::get_var("th_pear4gallery3", "show_breadcrumbs")) $parent = end($parents); ?>
<button class="large push large-with-push" onclick="window.location='<?= $parent->url($parent->id == $theme->item()->parent_id ? "show={$theme->item()->id}" : null) ?>' + '#viewMode=' + viewMode;"> <div class="outer"> <div class="label"> <?= html::purify(text::limit_chars($parent->title, module::get_var("gallery", "visible_title_length"))) ?></div> </div></button>
<? if (!module::get_var("th_pear4gallery3", "show_breadcrumbs")) break; ?>
<? endforeach ?>
<? endif ?>
</div>
<div class="pearTitle" title="<?= $theme->item()->description ?>"> <?= html::purify(text::limit_chars($theme->item()->title, 40)) ?> &nbsp;
<span class="count">(<?= count($theme->item()->children()) ?>)</span>
</div>
<? endif ?>
<div class="rNavBar">
<button class="large push large-with-push" onclick="$('#g-header').slideToggle('normal', function(){$('#g-header').is(':hidden') ? $('#sidebarButton').text('Show Options') : $('#sidebarButton').text('Hide Options')});//);toggleSidebar('ContentAlbum','sidebar'); return false;"> <div class="outer"> <div class="label" id="sidebarButton">Show Options</div></div></button>
</div>
2011-04-29 05:17:57 +00:00
</div>
<div id="g-header" class="ui-helper-clearfix" style="display: none;">
<div id="g-banner">
<?= $theme->user_menu() ?>
<?= $theme->header_top() ?>
<!-- hide the menu until after the page has loaded, to minimize menu flicker -->
<div id="g-site-menu" style="visibility: hidden">
<?= $theme->site_menu($theme->item() ? "#g-item-id-{$theme->item()->id}" : "") ?>
</div>
<script type="text/javascript"> $(document).ready(function() { $("#g-site-menu").css("visibility", "visible"); }) </script>
<?= $theme->header_bottom() ?>
</div>
</div>
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<?= $content ?>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
2011-05-24 11:28:35 +00:00
<div id="footerWrapper">
<div title="Change size of photos" id="sliderView" class="sliderView">
<div class="sliderRightCap"></div>
<div title="View at smallest photo size" class="smaller" onclick="$('#imgSlider').slider('value', 0);"></div>
<div title="View at largest photo size" class="larger" onclick="$('#imgSlider').slider('value', 250);"></div>
2011-05-24 11:28:35 +00:00
<div id="imgSlider" class="track">
</div>
</div>
2011-04-29 05:17:57 +00:00
2011-05-24 11:28:35 +00:00
<div style="" class="" id="colorPicker">
<div class="label">Color:</div>
<div title="View this album with a black background" id="black" class="swatch" onclick="swatchSkin('black');return false;"> </div>
<div title="View this album with a dark gray background" id="dkgrey" class="swatch" onclick="swatchSkin('dkgrey');return false;"> </div>
<div title="View this album with a light gray background" id="ltgrey" class="swatch" onclick="swatchSkin('ltgrey');return false;"> </div>
<div title="View this album with a white background" id="white" class="swatch" onclick="swatchSkin('white');return false;"> </div>
</div>
<div class="" style="" id="viewControls">
<? if ($theme->page_subtype != "movie"): ?>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<div title="Display this album in a grid view" id="grid" class="grid viewSwitcher sel sel-with-viewSwitcher viewSwitcher-icon">
<span class="vs-icon vs-icon-grid"></span>Grid
2011-05-24 11:28:35 +00:00
</div>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<div title="Display this album in a mosaic view" id="mosaic" class="viewSwitcher mosaic">
<span class="vs-icon vs-icon-mosaic"></span>Mosaic
2011-05-24 11:28:35 +00:00
</div>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<div title="Display this album in a carousel view" id="carousel" class="carousel viewSwitcher">
<span class="vs-icon vs-icon-carousel"></span>Carousel
2011-05-24 11:28:35 +00:00
</div>
<div title="Play a slideshow of this album" id="slideshow" class="viewSwitcher slideshow slideshow-with-viewSwitcher">
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<span class="vs-icon vs-icon-slideshow"></span>Slideshow
2011-05-24 11:28:35 +00:00
</div>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<div class="clear"></div>
<? endif ?>
2011-05-24 11:28:35 +00:00
</div>
Squashed '3.0/themes/pear4gallery3/' changes from b24d37b..11c3c2a 11c3c2a version 3.0 063ad6f move of context menu to top of thumb 0188d22 closes #4, now the form-dialog is just loaded once 508366d annoying " 4047609 fixes #8, support for slideshow duration 5ed2ff0 updated options page b65bc7b fixes #7, image animation d6d5319 Removed temporary sidebarToggle 9499b7b Attempt to fix #3, support for a sidebar 13b0419 fixes #5, issues with hovering thumbnails e0fcc41 Fix for broken slideshow, fixes #6 0bdd3c6 Fix for slideShowImages when album is empty. ca62330 Fix for broken dialogs f0d9e34 Copy of gallery.dialog.js from G3.0.0 e4a18f3 Updated jqury version. 7be51a8 Added support for breadcrumbs and sidebar (enable via theme options) fad0fe4 Hash update 9d3b519 Fix for detail hash Imgage preload a2cfa32 Fix for IE Support for using 'esc' to hide detailView 41a9863 fix so only Grid mode is supported if album does not contain any images 92c70a1 themeing the exif data 22386c3 Combined viewMode.png and removed some depricated files. dc10f0a New icons. cad0376 Fix for height of thumbs. 5c21b24 updated paginator with support for hash 6a13dab Updated theme b305613 fix for pageheight, with paginator ae87410 lNavBar fix 751bd86 New ui-theme 9a937a1 first attempt for item-option-overlay d024eba Fix for setTimeout. e167b2d JSLint take 2, reoder function reorder 82e0f38 Reindent and JSLint take 1. git-subtree-dir: 3.0/themes/pear4gallery3 git-subtree-split: 11c3c2ac87bc21b5daf5384e32d77492c5d6779a
2012-01-10 14:07:23 +00:00
<? if (!module::get_var("th_pear4gallery3", "hide_logo")): ?><button id="logoButton"></button><? endif ?>
2011-04-29 05:17:57 +00:00
</div>
</div> <? /*class="pear"*/ ?>
<? endif ?>
2011-05-24 11:28:35 +00:00
</body>
2011-04-29 05:17:57 +00:00
</html>