Calcul du seuil à dépasser pour charger de nouvelles photos.
[Portfolio.git] / skins / photo_layout_macros.pt
1 <html xmlns:tal="http://xml.zope.org/namespaces/tal"
2 xmlns:metal="http://xml.zope.org/namespaces/metal"
3 xmlns:i18n="http://xml.zope.org/namespaces/i18n">
4 <head>
5 <title>Display macros for arbitrary set of photos</title>
6 <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
7 </head>
8 <body>
9 <div metal:define-macro="grid"
10 tal:define="slide_size portal_object/slide_size;
11 mayBeDropable exists:dropable;
12 dropable python:True if mayBeDropable and dropable else False"
13 i18n:domain="portfolio">
14 <div id="lightbox" tal:attributes="class python:'lightbox photo-drop-target' if dropable else 'lightbox'">
15 <span metal:define-macro="thumbnails" tal:repeat="info infos" tal:omit-tag="">
16 <span tal:define="size info/thumbSize;
17 margin_top python:(slide_size - size['height']) / 2;
18 margin_left python:(slide_size - size['width']) / 2;
19 selected info/selected|nothing"
20 tal:attributes="class info/className;
21 name info/cmf_uid"
22 metal:define-macro="thumbnail">
23 <a class="slide" tal:attributes="href info/href; title info/title">
24 <img tal:attributes="src info/thumbUrl;
25 alt info/title;
26 height size/height;
27 width size/width;
28 style string:margin-top : ${margin_top}px ;;margin-left:${margin_left}px;"/>
29 </a>
30 <tal:block tal:condition="python:features.has_key('select')">
31 <span class="button slide-select" tal:condition="not:selected">
32 <a name="add_to_selection" title="Add to selection"
33 tal:attributes="href python:features['select'](info['o'], False)"
34 i18n:attributes="title">
35 <img tal:attributes="src string:${portal_url}/transparent.gif"
36 height="17" width="12" alt="Add to selection"
37 i18n:attributes="alt"/>
38 </a>
39 </span>
40 <span class="button slide-deselect" tal:condition="selected">
41 <a name="remove_to_selection" title="Remove to selection"
42 tal:attributes="href python:features['select'](info['o'], True)"
43 i18n:attributes="title">
44 <img height="17" width="12" alt="Remove to selection"
45 tal:attributes="src string:${portal_url}/transparent.gif"
46 i18n:attributes="alt"/>
47 </a>
48 </span>
49 </tal:block>
50 <span class="button slide-cart" tal:condition="python:info.get('buyable')">
51 <a name="add_to_cart" title="Add to cart"
52 tal:attributes="href python:features['cart'](info['o'])"
53 i18n:attributes="title">
54 <img height="17" width="20" alt="Add to cart"
55 tal:attributes="src string:${portal_url}/transparent.gif"
56 i18n:attributes="alt"/>
57 </a>
58 </span>
59 <span class="button slide-del" tal:condition="python:features.has_key('del')">
60 <a title="Delete"
61 tal:attributes="href python:features['del'](info['o'])"
62 i18n:attributes="title">
63 <img height="19" width="18" alt="Delete"
64 tal:attributes="src string:${portal_url}/transparent.gif"
65 i18n:attributes="alt"/>
66 </a>
67 </span>
68 <span class="button cb" tal:condition="features/checkbox|nothing">
69 <input type="checkbox" name="uids:list"
70 tal:attributes="value info/cmf_uid"/>
71 </span>
72 <tal:block tal:condition="features/hideAnonymous|nothing">
73 <span class="button slide-hide"
74 tal:define="mtop python:margin_top + 4;
75 mleft python:margin_left + size['width'] - 17"
76 tal:condition="not:info/hiddenForAnonymous"
77 tal:attributes="style python:'margin-top:%dpx;; margin-left:%dpx' % (mtop, mleft)">
78 <a title="Hide for anonymous" name="hide_for_anonymous"
79 tal:attributes="href string:${info/href}/hideForAnonymous"
80 i18n:attributes="title">
81 <img height="15" width="16" alt="Hide for anonymous"
82 tal:attributes="src string:${portal_url}/transparent.gif"
83 i18n:attributes="alt"/>
84 </a>
85 </span>
86 <span class="button slide-show"
87 tal:define="mtop python:margin_top + 4;
88 mleft python:margin_left + size['width'] - 17"
89 tal:condition="info/hiddenForAnonymous"
90 tal:attributes="style python:'margin-top:%dpx;; margin-left:%dpx' % (mtop, mleft)">
91 <a title="Show for anonymous" name="show_for_anonymous"
92 tal:attributes="href string:${info/href}/resetHide"
93 i18n:attributes="title">
94 <img height="15" width="16" alt="Show for anonymous"
95 tal:attributes="src string:${portal_url}/transparent.gif"
96 i18n:attributes="alt"/>
97 </a>
98 </span>
99 </tal:block>
100 </span>
101 </span>
102 </div>
103 <br clear="all"/>
104 <noscript>
105 <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div>
106 </noscript>
107 <script type="text/javascript" tal:condition="not:dropable">
108 new Lightbox(document.getElementById('lightbox'),
109 document.getElementById('lightbox_toolbar'));
110 </script>
111 <script type="text/javascript"
112 tal:condition="dropable"
113 tal:content="structure python:'''
114 (function(){
115 var lb = document.getElementById('lightbox');
116 new Lightbox(lb,
117 document.getElementById('lightbox_toolbar'));
118 var uploadUrl = '%(putUrl)s';
119 var options = {'slideSize' : %(slideSize)d,
120 'thumbnailSize' : %(thumbnailSize)d};
121 new DDImageUploader(lb, uploadUrl, options);
122 })();
123 ''' % {'putUrl' : '%s/put_upload' % here.absolute_url(),
124 'slideSize' : portal_object.slide_size,
125 'thumbnailSize' : portal_object.thumb_size}">
126 </script>
127 </div>
128 <div metal:define-macro="film_bar" tal:omit-tag="">
129 <div id="film_bar">
130 <table cellspacing="0">
131 <tr tal:define="slide_size python:portal_object.thumb_size/2 + 10">
132 <td tal:repeat="info contextInfos/infos">
133 <a tal:attributes="href info/href;
134 class info/className;
135 portfolio:position info/index">
136 <img tal:define="size info/thumbSize;
137 margin_top python:(slide_size - size['height']) / 2"
138 tal:attributes="src info/src;
139 alt info/title;
140 height size/height;
141 width size/width;
142 style string:margin-top : ${margin_top}px ;"/>
143 </a>
144 </td>
145 </tr>
146 </table>
147 </div>
148 <div class="jsslider">
149 <span id="slider"/>
150 </div>
151 <script type="text/javascript"
152 tal:content="python:'''
153 var startSlideShow, slideShowNext, stopSlideShow;
154 (function(){
155 var ctxInfos = {'filmLength': %(filmLength)s,
156 'center': %(center)s,
157 'slideSize': %(slideSize)d,
158 'ctxUrlTranslation' : [%(reBaseCtxUrl)s, %(canonicalUrl)s]};
159 var fs = new FilmSlider(document.getElementById('film_bar'),
160 document.getElementById('slider'),
161 ctxInfos,
162 document.getElementById('medium_image').getElementsByTagName('img')[0],
163 document.getElementById('image_toolbar'),
164 document.getElementById('Breadcrumbs'));
165 startSlideShow = function() {return fs.startSlideShow();};
166 stopSlideShow = function() {return fs.stopSlideShow();};
167 slideShowPrevious = function() {return fs.slideShowPrevious();};
168 slideShowNext = function() {return fs.slideShowNext();};
169 slideShowImageLoaded = function() {return fs.slideShowImageLoaded();};
170 })();
171 ''' % {'filmLength' : len(contextInfos['infos']),
172 'center' : index,
173 'slideSize' : portal_object.thumb_size/2 + 11,
174 'reBaseCtxUrl' : contextInfos['reBaseCtxUrl'],
175 'canonicalUrl' : contextInfos['canonicalUrl']}">
176 </script>
177 </div>
178 </body>
179 </html>