annotate WebContent/jscripts/tiny_mce/themes/advanced/link.htm @ 8:11baadcdd2c8

start of new Annotator API implementation.
author casties
date Mon, 19 Mar 2012 14:50:28 +0100
parents 0be9d53a6967
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
3 <head>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
4 <title>{#advanced_dlg.link_title}</title>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
6 <script type="text/javascript" src="../../utils/mctabs.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
7 <script type="text/javascript" src="../../utils/form_utils.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
8 <script type="text/javascript" src="../../utils/validate.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
9 <script type="text/javascript" src="js/link.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
10 </head>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
11 <body id="link" style="display: none">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
12 <form onsubmit="LinkDialog.update();return false;" action="#">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
13 <div class="tabs">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
14 <ul>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
15 <li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advanced_dlg.link_title}</a></span></li>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
16 </ul>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
17 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
18
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
19 <div class="panel_wrapper">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
20 <div id="general_panel" class="panel current">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
21 <table border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
22 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
23 <td class="nowrap"><label for="href">{#advanced_dlg.link_url}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
24 <td><table border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
25 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
26 <td><input id="href" name="href" type="text" class="mceFocus" value="" style="width: 200px" onchange="LinkDialog.checkPrefix(this);" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
27 <td id="hrefbrowsercontainer">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
28 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
29 </table></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
30 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
31 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
32 <td><label for="link_list">{#advanced_dlg.link_list}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
33 <td><select id="link_list" name="link_list" onchange="document.getElementById('href').value=this.options[this.selectedIndex].value;"></select></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
34 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
35 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
36 <td><label id="targetlistlabel" for="targetlist">{#advanced_dlg.link_target}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
37 <td><select id="target_list" name="target_list"></select></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
38 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
39 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
40 <td class="nowrap"><label for="linktitle">{#advanced_dlg.link_titlefield}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
41 <td><input id="linktitle" name="linktitle" type="text" value="" style="width: 200px" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
42 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
43 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
44 <td><label for="class_list">{#class_name}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
45 <td><select id="class_list" name="class_list"></select></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
46 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
47 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
48 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
49 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
50
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
51 <div class="mceActionPanel">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
52 <input type="submit" id="insert" name="insert" value="{#insert}" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
53 <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
54 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
55 </form>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
56 </body>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
57 </html>