blob: e8e326dfc96a6b777a51e1e8e53446e5eca5312f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
<!-- Single photo -->
<div class="header">
<div class="header_title">
<b>Photo {$image_name}</b><br />
{if $photo_count > 0}
{$photo_number} of {$photo_count}
{if $photo_count == 1}
Photo
{else}
Photos
{/if}
{if $description}
- {$description}<br />
{/if}
{/if}
</div>
<div class="header_menu">
<a href="javascript:zoom(-10);" title="zoom_out" onclick="click(this);"><img src="{$web_path}/resources/zoom-out.png" /></a>
<a href="javascript:zoom(0);" title="zoom_100" onclick="click(this);"><img src="{$web_path}/resources/zoom-100.png" /></a>
<a href="javascript:zoom(10);" title="zoom_in" onclick="click(this);"><img src="{$web_path}/resources/zoom-in.png" /></a>
<a href="javascript:startAutoBrowse();" title="auto browsing"><img id="autobrowse_ico" src="{$web_path}/resources/16_play.png" /> Auto-Browse</a>
{if $extern_link }
<a href="{$extern_link}" title="Use this link to return to the current view"><img src="{$web_path}/resources/link.png" /> External Link</a>
{/if}
<a href="{$image_url_full}" title="orig_image" target="_blank" onclick="click(this);"><img src="{$web_path}/resources/original.png" alt="original resolution" /> Fullsize</a>
</div>
</div>
<p class="cb">
<div id="photo_details">
{ if $ExifMadeWith }
<u><img src="{$web_path}/resources/camera.png" alt="camera icon" /> Image taken with:</u><br />
{$ExifMadeWith}<br />
{ /if }
{ if $ExifMadeOn }
<u><img src="{$web_path}/resources/date.png" alt="calendar icon" /> Image made on:</u><br />
{$ExifMadeOn}<br />
{ /if }
{ if $ExifOrigResolution }
<u><img src="{$web_path}/resources/image.png" alt="resolution icon" /> Original resolution:</u><br />
{$ExifOrigResolution}px<br />
{ /if }
<u>Size:</u> {$ExifFileSize}<br />
{ if $image_rating }
<u><img src="{$web_path}/resources/rating.png" alt="rating" /> Rating:</u><br />
{section name="rating" loop=$image_rating step=1}
<img src="{$web_path}/resources/star.png" />
{/section}
<br />
{ /if }
{ if $tags }
<br />
<u><img src="{$web_path}/resources/small_available_tags.png" alt="available tags" /> Tagged with:</u><br />
{ foreach from=$tags key=id item=name }
<a class="smalltag" href="javascript:Tags('add', '{$id}');" onfocus="click(this);">{$name}</a><br />
{ /foreach }
{ /if }
<hr>
{ if $prev_img }
<u><img src="{$web_path}/resources/photo.png" alt="photo icon" /> Previous:</u><br />
<a href="{$previous_url}" onfocus="click(this);" id="prev_link">
<img src="{$web_path}/phpfspot_img.php?idx={$prev_img}&width={$mini_width}" /><br />
</a>
{ /if}
{ if $next_img }
<u><img src="{$web_path}/resources/photo.png" alt="photo icon" /> Next:</u><br />
<a href="{$next_url}" onfocus="click(this);" id="next_link">
<img src="{$web_path}/phpfspot_img.php?idx={$next_img}&width={$mini_width}" /><br />
</a>
{ /if}
</div>
<!-- the photo itself -->
<div class="photo">
{ if $next_url == "" }
<a href="{$image_url}" onclick="showPhotoIndex(); return false;" onfocus="click(this);" name="photo">
{ else }
<a href="{$image_url}" onclick="{$next_url}; return false;" onfocus="click(this);" title="click for the next photo" name="photo">
{ /if }
<img src="{$image_url}" width="{$width}" height="{$height}" alt="{$image_filename}" name="photo" id="photo" />
</a>
</div>
<!-- navigation arrows -->
<div class="photonavigation">
{ if $previous_url == "" }
<img src="{$web_path}/resources/arrow_left_gray.png" alt="first photo reached" />
{ else }
<a href="{$previous_url}" onfocus="click(this);" title="click for the previous photo (left cursor)">
<img src="{$web_path}/resources/arrow_left.png" alt="previous photo" />
</a>
{ /if }
<a href="javascript:showPhotoIndex({$current_page}, {$current_img});" onfocus="click(this);" title="click to go back to the index">
<img src="{$web_path}/resources/arrow_up.png" alt="photo index" />
</a>
{ if $next_url == "" }
<img src="{$web_path}/resources/arrow_right_gray.png" alt="last photo reached" />
{ else }
<a href="{$next_url}" onfocus="click(this);" title="click for the next photo (right cursor)">
<img src="{$web_path}/resources/arrow_right.png" alt="next photo" />
</a>
{ /if}
</div>
</p>
<script type="text/javascript">
<!--
if(autobrowse && document.getElementById("autobrowse_ico"))
document.getElementById("autobrowse_ico").src = '{$web_path}/resources/16_pause.png';
/* lets preload to previous and the next image to speedup */
var image_next = new Image();
image_next.src = "{$web_path}/phpfspot_img.php?idx={$next_img}&width={$photo_width}";
var image_prev = new Image();
image_prev.src = "{$web_path}/phpfspot_img.php?idx={$prev_img}&width={$photo_width}";
-->
</script>
<!-- /Single photo -->
|