event refactor, landing on HEAD!
[freeside.git] / httemplate / elements / fckeditor / editor / dialog / fck_link.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">\r
2 <!--\r
3  * FCKeditor - The text editor for Internet - http://www.fckeditor.net\r
4  * Copyright (C) 2003-2007 Frederico Caldeira Knabben\r
5  *\r
6  * == BEGIN LICENSE ==\r
7  *\r
8  * Licensed under the terms of any of the following licenses at your\r
9  * choice:\r
10  *\r
11  *  - GNU General Public License Version 2 or later (the "GPL")\r
12  *    http://www.gnu.org/licenses/gpl.html\r
13  *\r
14  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")\r
15  *    http://www.gnu.org/licenses/lgpl.html\r
16  *\r
17  *  - Mozilla Public License Version 1.1 or later (the "MPL")\r
18  *    http://www.mozilla.org/MPL/MPL-1.1.html\r
19  *\r
20  * == END LICENSE ==\r
21  *\r
22  * Link dialog window.\r
23 -->\r
24 <html>\r
25         <head>\r
26                 <title>Link Properties</title>\r
27                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\r
28                 <meta name="robots" content="noindex, nofollow" />\r
29                 <script src="common/fck_dialog_common.js" type="text/javascript"></script>\r
30                 <script src="fck_link/fck_link.js" type="text/javascript"></script>\r
31         </head>\r
32         <body scroll="no" style="OVERFLOW: hidden">\r
33                 <div id="divInfo" style="DISPLAY: none">\r
34                         <span fckLang="DlgLnkType">Link Type</span><br />\r
35                         <select id="cmbLinkType" onchange="SetLinkType(this.value);">\r
36                                 <option value="url" fckLang="DlgLnkTypeURL" selected="selected">URL</option>\r
37                                 <option value="anchor" fckLang="DlgLnkTypeAnchor">Anchor in this page</option>\r
38                                 <option value="email" fckLang="DlgLnkTypeEMail">E-Mail</option>\r
39                         </select>\r
40                         <br />\r
41                         <br />\r
42                         <div id="divLinkTypeUrl">\r
43                                 <table cellspacing="0" cellpadding="0" width="100%" border="0" dir="ltr">\r
44                                         <tr>\r
45                                                 <td nowrap="nowrap">\r
46                                                         <span fckLang="DlgLnkProto">Protocol</span><br />\r
47                                                         <select id="cmbLinkProtocol">\r
48                                                                 <option value="http://" selected="selected">http://</option>\r
49                                                                 <option value="https://">https://</option>\r
50                                                                 <option value="ftp://">ftp://</option>\r
51                                                                 <option value="news://">news://</option>\r
52                                                                 <option value="" fckLang="DlgLnkProtoOther">&lt;other&gt;</option>\r
53                                                         </select>\r
54                                                 </td>\r
55                                                 <td nowrap="nowrap">&nbsp;</td>\r
56                                                 <td nowrap="nowrap" width="100%">\r
57                                                         <span fckLang="DlgLnkURL">URL</span><br />\r
58                                                         <input id="txtUrl" style="WIDTH: 100%" type="text" onkeyup="OnUrlChange();" onchange="OnUrlChange();" />\r
59                                                 </td>\r
60                                         </tr>\r
61                                 </table>\r
62                                 <br />\r
63                                 <div id="divBrowseServer">\r
64                                 <input type="button" value="Browse Server" fckLang="DlgBtnBrowseServer" onclick="BrowseServer();" />\r
65                                 </div>\r
66                         </div>\r
67                         <div id="divLinkTypeAnchor" style="DISPLAY: none" align="center">\r
68                                 <div id="divSelAnchor" style="DISPLAY: none">\r
69                                         <table cellspacing="0" cellpadding="0" border="0" width="70%">\r
70                                                 <tr>\r
71                                                         <td colspan="3">\r
72                                                                 <span fckLang="DlgLnkAnchorSel">Select an Anchor</span>\r
73                                                         </td>\r
74                                                 </tr>\r
75                                                 <tr>\r
76                                                         <td width="50%">\r
77                                                                 <span fckLang="DlgLnkAnchorByName">By Anchor Name</span><br />\r
78                                                                 <select id="cmbAnchorName" onchange="GetE('cmbAnchorId').value='';" style="WIDTH: 100%">\r
79                                                                         <option value="" selected="selected"></option>\r
80                                                                 </select>\r
81                                                         </td>\r
82                                                         <td>&nbsp;&nbsp;&nbsp;</td>\r
83                                                         <td width="50%">\r
84                                                                 <span fckLang="DlgLnkAnchorById">By Element Id</span><br />\r
85                                                                 <select id="cmbAnchorId" onchange="GetE('cmbAnchorName').value='';" style="WIDTH: 100%">\r
86                                                                         <option value="" selected="selected"></option>\r
87                                                                 </select>\r
88                                                         </td>\r
89                                                 </tr>\r
90                                         </table>\r
91                                 </div>\r
92                                 <div id="divNoAnchor" style="DISPLAY: none">\r
93                                         <span fckLang="DlgLnkNoAnchors">&lt;No anchors available in the document&gt;</span>\r
94                                 </div>\r
95                         </div>\r
96                         <div id="divLinkTypeEMail" style="DISPLAY: none">\r
97                                 <span fckLang="DlgLnkEMail">E-Mail Address</span><br />\r
98                                 <input id="txtEMailAddress" style="WIDTH: 100%" type="text" /><br />\r
99                                 <span fckLang="DlgLnkEMailSubject">Message Subject</span><br />\r
100                                 <input id="txtEMailSubject" style="WIDTH: 100%" type="text" /><br />\r
101                                 <span fckLang="DlgLnkEMailBody">Message Body</span><br />\r
102                                 <textarea id="txtEMailBody" style="WIDTH: 100%" rows="3" cols="20"></textarea>\r
103                         </div>\r
104                 </div>\r
105                 <div id="divUpload" style="DISPLAY: none">\r
106                         <form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();">\r
107                                 <span fckLang="DlgLnkUpload">Upload</span><br />\r
108                                 <input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />\r
109                                 <br />\r
110                                 <input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />\r
111                                 <iframe name="UploadWindow" style="DISPLAY: none" src="javascript:void(0)"></iframe>\r
112                         </form>\r
113                 </div>\r
114                 <div id="divTarget" style="DISPLAY: none">\r
115                         <table cellspacing="0" cellpadding="0" width="100%" border="0">\r
116                                 <tr>\r
117                                         <td nowrap="nowrap">\r
118                                                 <span fckLang="DlgLnkTarget">Target</span><br />\r
119                                                 <select id="cmbTarget" onchange="SetTarget(this.value);">\r
120                                                         <option value="" fckLang="DlgGenNotSet" selected="selected">&lt;not set&gt;</option>\r
121                                                         <option value="frame" fckLang="DlgLnkTargetFrame">&lt;frame&gt;</option>\r
122                                                         <option value="popup" fckLang="DlgLnkTargetPopup">&lt;popup window&gt;</option>\r
123                                                         <option value="_blank" fckLang="DlgLnkTargetBlank">New Window (_blank)</option>\r
124                                                         <option value="_top" fckLang="DlgLnkTargetTop">Topmost Window (_top)</option>\r
125                                                         <option value="_self" fckLang="DlgLnkTargetSelf">Same Window (_self)</option>\r
126                                                         <option value="_parent" fckLang="DlgLnkTargetParent">Parent Window (_parent)</option>\r
127                                                 </select>\r
128                                         </td>\r
129                                         <td>&nbsp;</td>\r
130                                         <td id="tdTargetFrame" nowrap="nowrap" width="100%">\r
131                                                 <span fckLang="DlgLnkTargetFrameName">Target Frame Name</span><br />\r
132                                                 <input id="txtTargetFrame" style="WIDTH: 100%" type="text" onkeyup="OnTargetNameChange();"\r
133                                                         onchange="OnTargetNameChange();" />\r
134                                         </td>\r
135                                         <td id="tdPopupName" style="DISPLAY: none" nowrap="nowrap" width="100%">\r
136                                                 <span fckLang="DlgLnkPopWinName">Popup Window Name</span><br />\r
137                                                 <input id="txtPopupName" style="WIDTH: 100%" type="text" />\r
138                                         </td>\r
139                                 </tr>\r
140                         </table>\r
141                         <br />\r
142                         <table id="tablePopupFeatures" style="DISPLAY: none" cellspacing="0" cellpadding="0" align="center"\r
143                                 border="0">\r
144                                 <tr>\r
145                                         <td>\r
146                                                 <span fckLang="DlgLnkPopWinFeat">Popup Window Features</span><br />\r
147                                                 <table cellspacing="0" cellpadding="0" border="0">\r
148                                                         <tr>\r
149                                                                 <td valign="top" nowrap="nowrap" width="50%">\r
150                                                                         <input id="chkPopupResizable" name="chkFeature" value="resizable" type="checkbox" /><label for="chkPopupResizable" fckLang="DlgLnkPopResize">Resizable</label><br />\r
151                                                                         <input id="chkPopupLocationBar" name="chkFeature" value="location" type="checkbox" /><label for="chkPopupLocationBar" fckLang="DlgLnkPopLocation">Location\r
152                                                                                 Bar</label><br />\r
153                                                                         <input id="chkPopupManuBar" name="chkFeature" value="menubar" type="checkbox" /><label for="chkPopupManuBar" fckLang="DlgLnkPopMenu">Menu\r
154                                                                                 Bar</label><br />\r
155                                                                         <input id="chkPopupScrollBars" name="chkFeature" value="scrollbars" type="checkbox" /><label for="chkPopupScrollBars" fckLang="DlgLnkPopScroll">Scroll\r
156                                                                                 Bars</label>\r
157                                                                 </td>\r
158                                                                 <td></td>\r
159                                                                 <td valign="top" nowrap="nowrap" width="50%">\r
160                                                                         <input id="chkPopupStatusBar" name="chkFeature" value="status" type="checkbox" /><label for="chkPopupStatusBar" fckLang="DlgLnkPopStatus">Status\r
161                                                                                 Bar</label><br />\r
162                                                                         <input id="chkPopupToolbar" name="chkFeature" value="toolbar" type="checkbox" /><label for="chkPopupToolbar" fckLang="DlgLnkPopToolbar">Toolbar</label><br />\r
163                                                                         <input id="chkPopupFullScreen" name="chkFeature" value="fullscreen" type="checkbox" /><label for="chkPopupFullScreen" fckLang="DlgLnkPopFullScrn">Full\r
164                                                                                 Screen (IE)</label><br />\r
165                                                                         <input id="chkPopupDependent" name="chkFeature" value="dependent" type="checkbox" /><label for="chkPopupDependent" fckLang="DlgLnkPopDependent">Dependent\r
166                                                                                 (Netscape)</label>\r
167                                                                 </td>\r
168                                                         </tr>\r
169                                                         <tr>\r
170                                                                 <td valign="top" nowrap="nowrap" width="50%">&nbsp;</td>\r
171                                                                 <td></td>\r
172                                                                 <td valign="top" nowrap="nowrap" width="50%"></td>\r
173                                                         </tr>\r
174                                                         <tr>\r
175                                                                 <td valign="top">\r
176                                                                         <table cellspacing="0" cellpadding="0" border="0">\r
177                                                                                 <tr>\r
178                                                                                         <td nowrap="nowrap"><span fckLang="DlgLnkPopWidth">Width</span></td>\r
179                                                                                         <td>&nbsp;<input id="txtPopupWidth" type="text" maxlength="4" size="4" /></td>\r
180                                                                                 </tr>\r
181                                                                                 <tr>\r
182                                                                                         <td nowrap="nowrap"><span fckLang="DlgLnkPopHeight">Height</span></td>\r
183                                                                                         <td>&nbsp;<input id="txtPopupHeight" type="text" maxlength="4" size="4" /></td>\r
184                                                                                 </tr>\r
185                                                                         </table>\r
186                                                                 </td>\r
187                                                                 <td>&nbsp;&nbsp;</td>\r
188                                                                 <td valign="top">\r
189                                                                         <table cellspacing="0" cellpadding="0" border="0">\r
190                                                                                 <tr>\r
191                                                                                         <td nowrap="nowrap"><span fckLang="DlgLnkPopLeft">Left Position</span></td>\r
192                                                                                         <td>&nbsp;<input id="txtPopupLeft" type="text" maxlength="4" size="4" /></td>\r
193                                                                                 </tr>\r
194                                                                                 <tr>\r
195                                                                                         <td nowrap="nowrap"><span fckLang="DlgLnkPopTop">Top Position</span></td>\r
196                                                                                         <td>&nbsp;<input id="txtPopupTop" type="text" maxlength="4" size="4" /></td>\r
197                                                                                 </tr>\r
198                                                                         </table>\r
199                                                                 </td>\r
200                                                         </tr>\r
201                                                 </table>\r
202                                         </td>\r
203                                 </tr>\r
204                         </table>\r
205                 </div>\r
206                 <div id="divAttribs" style="DISPLAY: none">\r
207                         <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">\r
208                                 <tr>\r
209                                         <td valign="top" width="50%">\r
210                                                 <span fckLang="DlgGenId">Id</span><br />\r
211                                                 <input id="txtAttId" style="WIDTH: 100%" type="text" />\r
212                                         </td>\r
213                                         <td width="1"></td>\r
214                                         <td valign="top">\r
215                                                 <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">\r
216                                                         <tr>\r
217                                                                 <td width="60%">\r
218                                                                         <span fckLang="DlgGenLangDir">Language Direction</span><br />\r
219                                                                         <select id="cmbAttLangDir" style="WIDTH: 100%">\r
220                                                                                 <option value="" fckLang="DlgGenNotSet" selected>&lt;not set&gt;</option>\r
221                                                                                 <option value="ltr" fckLang="DlgGenLangDirLtr">Left to Right (LTR)</option>\r
222                                                                                 <option value="rtl" fckLang="DlgGenLangDirRtl">Right to Left (RTL)</option>\r
223                                                                         </select>\r
224                                                                 </td>\r
225                                                                 <td width="1%">&nbsp;&nbsp;&nbsp;</td>\r
226                                                                 <td nowrap="nowrap"><span fckLang="DlgGenAccessKey">Access Key</span><br />\r
227                                                                         <input id="txtAttAccessKey" style="WIDTH: 100%" type="text" maxlength="1" size="1" />\r
228                                                                 </td>\r
229                                                         </tr>\r
230                                                 </table>\r
231                                         </td>\r
232                                 </tr>\r
233                                 <tr>\r
234                                         <td valign="top" width="50%">\r
235                                                 <span fckLang="DlgGenName">Name</span><br />\r
236                                                 <input id="txtAttName" style="WIDTH: 100%" type="text" />\r
237                                         </td>\r
238                                         <td width="1"></td>\r
239                                         <td valign="top">\r
240                                                 <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">\r
241                                                         <tr>\r
242                                                                 <td width="60%">\r
243                                                                         <span fckLang="DlgGenLangCode">Language Code</span><br />\r
244                                                                         <input id="txtAttLangCode" style="WIDTH: 100%" type="text" />\r
245                                                                 </td>\r
246                                                                 <td width="1%">&nbsp;&nbsp;&nbsp;</td>\r
247                                                                 <td nowrap="nowrap">\r
248                                                                         <span fckLang="DlgGenTabIndex">Tab Index</span><br />\r
249                                                                         <input id="txtAttTabIndex" style="WIDTH: 100%" type="text" maxlength="5" size="5" />\r
250                                                                 </td>\r
251                                                         </tr>\r
252                                                 </table>\r
253                                         </td>\r
254                                 </tr>\r
255                                 <tr>\r
256                                         <td valign="top" width="50%">&nbsp;</td>\r
257                                         <td width="1"></td>\r
258                                         <td valign="top"></td>\r
259                                 </tr>\r
260                                 <tr>\r
261                                         <td valign="top" width="50%">\r
262                                                 <span fckLang="DlgGenTitle">Advisory Title</span><br />\r
263                                                 <input id="txtAttTitle" style="WIDTH: 100%" type="text" />\r
264                                         </td>\r
265                                         <td width="1">&nbsp;&nbsp;&nbsp;</td>\r
266                                         <td valign="top">\r
267                                                 <span fckLang="DlgGenContType">Advisory Content Type</span><br />\r
268                                                 <input id="txtAttContentType" style="WIDTH: 100%" type="text" />\r
269                                         </td>\r
270                                 </tr>\r
271                                 <tr>\r
272                                         <td valign="top">\r
273                                                 <span fckLang="DlgGenClass">Stylesheet Classes</span><br />\r
274                                                 <input id="txtAttClasses" style="WIDTH: 100%" type="text" />\r
275                                         </td>\r
276                                         <td></td>\r
277                                         <td valign="top">\r
278                                                 <span fckLang="DlgGenLinkCharset">Linked Resource Charset</span><br />\r
279                                                 <input id="txtAttCharSet" style="WIDTH: 100%" type="text" />\r
280                                         </td>\r
281                                 </tr>\r
282                         </table>\r
283                         <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">\r
284                                 <tr>\r
285                                         <td>\r
286                                                 <span fckLang="DlgGenStyle">Style</span><br />\r
287                                                 <input id="txtAttStyle" style="WIDTH: 100%" type="text" />\r
288                                         </td>\r
289                                 </tr>\r
290                         </table>\r
291                 </div>\r
292         </body>\r
293 </html>\r