Lines Matching refs:html

172         var where, root, html;  variable
191 html = "";
192 html += "<div class='upload'>";
193html += " <button id='supa__pastebutton' type='button'>" + t("label_paste_image") + "</button><br…
194 html += " <div style='border: 1px solid black;'>";
195html += " <applet id='" + supa_handler.applet_id + "' name='" + supa_handler.applet_name + "'";
196 html += " archive='" + DOKU_BASE + "lib/plugins/supa/lib/Supa.jar'";
197 html += " code='de.christophlinder.supa.SupaApplet.class'";
198 html += " width='" + supa_handler.preview_width + "'";
199 html += " height='" + supa_handler.preview_height + "'";
200 html += " >";
201 html += " <param name='imagecodec' value='png'/>";
202 html += " <param name='previewscaler' value='" + supa_handler.preview_scaler + "'/>";
203 html += " <param name='encoding' value='base64'/>";
204 html += " " + t("txt_no_java");
205 html += " </applet>";
206 html += " </div>";
207 html += " <br/>";
209 html += " <input id='supa__sectok' type='hidden' value='" + supa_handler.sectok + "'/>";
210 html += " <label for='supa__ns'>" + t("prompt_namespace") + "</label>";
211 html += " <input id='supa__ns' value='" + supa_handler.namespace + "'/>";
212 html += " <span title='" + t("txt_required_hint") + "'>" + t("txt_required") + "</span>";
213 html += " <br/>";
215 html += " <label for='supa__filename'>" + t("prompt_filename") + "</label>";
216 html += " <input id='supa__filename' value='" + supa_handler.default_filename + "'/>";
217 html += " <span title='" + t("txt_required_hint") + "'>" + t("txt_required") + "</span>";
218 html += " <br/>";
220html += " <button id='supa__uploadbutton' type='button'>" + t("txt_upload_image") + "</button>";
221 html += " <br/>";
222 html += "</div>";
224 root.innerHTML = html;