1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
6 <meta http-equiv="content-type" content="text/html;charset=utf-8" />
7 <title>Embedded images</title>
8 <style type="text/css" media="screen">
9 a, a:hover, a:active, a:visited {
32 border: 1px solid #ddd;
35 .lightbox .slide img {
37 border: 1px solid black;
40 .lightbox span.button {
45 .lightbox span[class].button {
49 .lightbox span:hover span.button {
54 <script type="text/javascript" language="javascript" charset="utf-8" src="epoz_script_detect.js"></script>
55 <script type="text/javascript" language="javascript" charset="utf-8" src="javascript_events_api.js"></script>
56 <script type="text/javascript" language="javascript" charset="utf-8" src="sarissa.js"></script>
57 <script type="text/javascript" language="javascript" charset="utf-8" src="DHTMLapi.js"></script>
58 <script type="text/javascript">
60 var FCK = window.parent.FCK;
61 var contentPath = FCK.Config.contentPath;
63 var FCKConfig = window.parent.FCKConfig;
64 var connUrl = FCKConfig.AttachmentBrowserConnectorUrl;
65 var imagesPath = 'images/';
69 function _initBrowser(){
70 var form = document.getElementById('uploadAttachmentForm');
71 form.elements['path'].value = contentPath;
72 var loc = window.location;
73 form.elements['redirUrl'].value = loc.protocol + '//' + loc.host + loc.pathname;
74 form.action = connUrl;
75 addListener(document.getElementById('slides'), 'click', handleClick)
79 function importAttachments() {
80 var req = new XMLHttpRequest();
81 req.open("POST", connUrl, false); // synchrone
82 req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
83 req.send("command=ls&path="+escape(contentPath));
84 var respDom = req.responseXML.documentElement;
86 var rows = respDom.getElementsByTagName('row');
87 var row, img, slide, a;
88 var slides = document.getElementById('slides');
90 for (var i = 0 ; i<rows.length ; i++)
91 addControlThumbnail(rows[i], slides);
94 function addControlThumbnail(row, dest) {
95 var slide = document.createElement('span');
97 var a = document.createElement('a');
98 a.href = row.getAttribute('url');
99 a.className = 'slide';
101 var img = document.createElement('img');
102 img.src = row.getAttribute('previewUrl');
103 img.width = row.getAttribute('width');
104 img.height = row.getAttribute('height');
105 img.style.marginTop = (slide_size - parseInt(img.height)) / 2 + 'px';
106 img.style.marginLeft = (slide_size - parseInt(img.width)) / 2 + 'px';
110 slide.appendChild(a);
111 dest.appendChild(slide);
113 var spanButton = document.createElement('span');
114 spanButton.className = 'button';
115 var a = document.createElement('a');
117 a.text = "Supprimer";
119 spanButton.appendChild(a);
120 slide.appendChild(spanButton);
122 var spanButtonWidth = getObjectWidth(a);
123 var spanButtonHeight = getObjectHeight(a);
124 spanButton.style.width = spanButtonWidth + 'px';
125 spanButton.style.height = spanButtonHeight + 'px';
126 spanButton.style.top = slide_size - spanButtonHeight - 3 + 'px';
127 spanButton.style.left = slide_size - spanButtonWidth - 3 + 'px';
130 function handleClick(evt) {
131 var target = getTargetedObject(evt);
133 disablePropagation(evt);
134 switch (target.tagName) {
136 var a = target.parentNode;
137 window.parent.updateOrInsertImage(a.getAttribute('href', 2));
140 if (target.name == 'suppr')
141 var a = target.parentNode.parentNode.getElementsByTagName('a')[0];
142 var href = a.getAttribute('href', 2);
143 var imgPath = window.parent.editor.FCKConfig.EditorPath + href;
145 var req = new XMLHttpRequest();
146 req.open("POST", connUrl, false); // synchrone
147 req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
148 req.send("command=rm&path="+escape(imgPath));
149 var doc = req.responseXML.documentElement;
150 if (doc.tagName == 'done') {
151 var slide = target.parentNode.parentNode;
152 slide.parentNode.removeChild(slide);
158 addListener(window, 'load', _initBrowser);
163 <body i18n:domain="plinn">
164 <form id="uploadAttachmentForm" action="." method="post" enctype="multipart/form-data">
165 <input type="file" name="file"/>
166 <input type="hidden" name="path" value="" />
167 <input type="hidden" name="command" value="upload" />
168 <input type="hidden" name="Type" value="Photo" />
169 <input type="hidden" name="redirUrl" value="">
170 <input type="submit" name="upload" value="Upload" i18n:attributes="value"/>
172 <div id="slides" class="lightbox"></div>