~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-dataset/src/main/webapp/dhis-web-maintenance-dataset/javascript/FCK/editor/dialog/fck_image.html

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
2
<!--
 
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
 
4
 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
 
5
 *
 
6
 * == BEGIN LICENSE ==
 
7
 *
 
8
 * Licensed under the terms of any of the following licenses at your
 
9
 * choice:
 
10
 *
 
11
 *  - GNU General Public License Version 2 or later (the "GPL")
 
12
 *    http://www.gnu.org/licenses/gpl.html
 
13
 *
 
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
 
15
 *    http://www.gnu.org/licenses/lgpl.html
 
16
 *
 
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
 
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
 
19
 *
 
20
 * == END LICENSE ==
 
21
 *
 
22
 * Image Properties dialog window.
 
23
-->
 
24
<html xmlns="http://www.w3.org/1999/xhtml">
 
25
<head>
 
26
        <title>Image Properties</title>
 
27
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
28
        <meta name="robots" content="noindex, nofollow" />
 
29
        <script src="common/fck_dialog_common.js" type="text/javascript"></script>
 
30
        <script src="fck_image/fck_image.js" type="text/javascript"></script>
 
31
        <link href="common/fck_dialog_common.css" rel="stylesheet" type="text/css" />
 
32
</head>
 
33
<body scroll="no" style="overflow: hidden">
 
34
        <div id="divInfo">
 
35
                <table cellspacing="1" cellpadding="1" border="0" width="100%" height="100%">
 
36
                        <tr>
 
37
                                <td>
 
38
                                        <table cellspacing="0" cellpadding="0" width="100%" border="0">
 
39
                                                <tr>
 
40
                                                        <td width="100%">
 
41
                                                                <span fcklang="DlgImgURL">URL</span>
 
42
                                                        </td>
 
43
                                                        <td id="tdBrowse" style="display: none" nowrap="nowrap" rowspan="2">
 
44
                                                                &nbsp;
 
45
                                                                <input id="btnBrowse" onclick="BrowseServer();" type="button" value="Browse Server"
 
46
                                                                        fcklang="DlgBtnBrowseServer" />
 
47
                                                        </td>
 
48
                                                </tr>
 
49
                                                <tr>
 
50
                                                        <td valign="top">
 
51
                                                                <input id="txtUrl" style="width: 100%" type="text" onblur="UpdatePreview();" />
 
52
                                                        </td>
 
53
                                                </tr>
 
54
                                        </table>
 
55
                                </td>
 
56
                        </tr>
 
57
                        <tr>
 
58
                                <td>
 
59
                                        <span fcklang="DlgImgAlt">Short Description</span><br />
 
60
                                        <input id="txtAlt" style="width: 100%" type="text" /><br />
 
61
                                </td>
 
62
                        </tr>
 
63
                        <tr height="100%">
 
64
                                <td valign="top">
 
65
                                        <table cellspacing="0" cellpadding="0" width="100%" border="0" height="100%">
 
66
                                                <tr>
 
67
                                                        <td valign="top">
 
68
                                                                <br />
 
69
                                                                <table cellspacing="0" cellpadding="0" border="0">
 
70
                                                                        <tr>
 
71
                                                                                <td nowrap="nowrap">
 
72
                                                                                        <span fcklang="DlgImgWidth">Width</span>&nbsp;</td>
 
73
                                                                                <td>
 
74
                                                                                        <input type="text" size="3" id="txtWidth" onkeyup="OnSizeChanged('Width',this.value);" /></td>
 
75
                                                                                <td rowspan="2">
 
76
                                                                                        <div id="btnLockSizes" class="BtnLocked" onmouseover="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ) + ' BtnOver';"
 
77
                                                                                                onmouseout="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' );" title="Lock Sizes"
 
78
                                                                                                onclick="SwitchLock(this);">
 
79
                                                                                        </div>
 
80
                                                                                </td>
 
81
                                                                                <td rowspan="2">
 
82
                                                                                        <div id="btnResetSize" class="BtnReset" onmouseover="this.className='BtnReset BtnOver';"
 
83
                                                                                                onmouseout="this.className='BtnReset';" title="Reset Size" onclick="ResetSizes();">
 
84
                                                                                        </div>
 
85
                                                                                </td>
 
86
                                                                        </tr>
 
87
                                                                        <tr>
 
88
                                                                                <td nowrap="nowrap">
 
89
                                                                                        <span fcklang="DlgImgHeight">Height</span>&nbsp;</td>
 
90
                                                                                <td>
 
91
                                                                                        <input type="text" size="3" id="txtHeight" onkeyup="OnSizeChanged('Height',this.value);" /></td>
 
92
                                                                        </tr>
 
93
                                                                </table>
 
94
                                                                <br />
 
95
                                                                <table cellspacing="0" cellpadding="0" border="0">
 
96
                                                                        <tr>
 
97
                                                                                <td nowrap="nowrap">
 
98
                                                                                        <span fcklang="DlgImgBorder">Border</span>&nbsp;</td>
 
99
                                                                                <td>
 
100
                                                                                        <input type="text" size="2" value="" id="txtBorder" onkeyup="UpdatePreview();" /></td>
 
101
                                                                        </tr>
 
102
                                                                        <tr>
 
103
                                                                                <td nowrap="nowrap">
 
104
                                                                                        <span fcklang="DlgImgHSpace">HSpace</span>&nbsp;</td>
 
105
                                                                                <td>
 
106
                                                                                        <input type="text" size="2" id="txtHSpace" onkeyup="UpdatePreview();" /></td>
 
107
                                                                        </tr>
 
108
                                                                        <tr>
 
109
                                                                                <td nowrap="nowrap">
 
110
                                                                                        <span fcklang="DlgImgVSpace">VSpace</span>&nbsp;</td>
 
111
                                                                                <td>
 
112
                                                                                        <input type="text" size="2" id="txtVSpace" onkeyup="UpdatePreview();" /></td>
 
113
                                                                        </tr>
 
114
                                                                        <tr>
 
115
                                                                                <td nowrap="nowrap">
 
116
                                                                                        <span fcklang="DlgImgAlign">Align</span>&nbsp;</td>
 
117
                                                                                <td>
 
118
                                                                                        <select id="cmbAlign" onchange="UpdatePreview();">
 
119
                                                                                                <option value="" selected="selected"></option>
 
120
                                                                                                <option fcklang="DlgImgAlignLeft" value="left">Left</option>
 
121
                                                                                                <option fcklang="DlgImgAlignAbsBottom" value="absBottom">Abs Bottom</option>
 
122
                                                                                                <option fcklang="DlgImgAlignAbsMiddle" value="absMiddle">Abs Middle</option>
 
123
                                                                                                <option fcklang="DlgImgAlignBaseline" value="baseline">Baseline</option>
 
124
                                                                                                <option fcklang="DlgImgAlignBottom" value="bottom">Bottom</option>
 
125
                                                                                                <option fcklang="DlgImgAlignMiddle" value="middle">Middle</option>
 
126
                                                                                                <option fcklang="DlgImgAlignRight" value="right">Right</option>
 
127
                                                                                                <option fcklang="DlgImgAlignTextTop" value="textTop">Text Top</option>
 
128
                                                                                                <option fcklang="DlgImgAlignTop" value="top">Top</option>
 
129
                                                                                        </select>
 
130
                                                                                </td>
 
131
                                                                        </tr>
 
132
                                                                </table>
 
133
                                                        </td>
 
134
                                                        <td>
 
135
                                                                &nbsp;&nbsp;&nbsp;</td>
 
136
                                                        <td width="100%" valign="top">
 
137
                                                                <table cellpadding="0" cellspacing="0" width="100%" style="table-layout: fixed">
 
138
                                                                        <tr>
 
139
                                                                                <td>
 
140
                                                                                        <span fcklang="DlgImgPreview">Preview</span></td>
 
141
                                                                        </tr>
 
142
                                                                        <tr>
 
143
                                                                                <td valign="top">
 
144
                                                                                        <iframe class="ImagePreviewArea" src="fck_image/fck_image_preview.html" frameborder="0"
 
145
                                                                                                marginheight="0" marginwidth="0"></iframe>
 
146
                                                                                </td>
 
147
                                                                        </tr>
 
148
                                                                </table>
 
149
                                                        </td>
 
150
                                                </tr>
 
151
                                        </table>
 
152
                                </td>
 
153
                        </tr>
 
154
                </table>
 
155
        </div>
 
156
        <div id="divUpload" style="display: none">
 
157
                <form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data"
 
158
                        action="" onsubmit="return CheckUpload();">
 
159
                        <span fcklang="DlgLnkUpload">Upload</span><br />
 
160
                        <input id="txtUploadFile" style="width: 100%" type="file" size="40" name="NewFile" /><br />
 
161
                        <br />
 
162
                        <input id="btnUpload" type="submit" value="Send it to the Server" fcklang="DlgLnkBtnUpload" />
 
163
                        <iframe name="UploadWindow" style="display: none" src="javascript:void(0)"></iframe>
 
164
                </form>
 
165
        </div>
 
166
        <div id="divLink" style="display: none">
 
167
                <table cellspacing="1" cellpadding="1" border="0" width="100%">
 
168
                        <tr>
 
169
                                <td>
 
170
                                        <div>
 
171
                                                <span fcklang="DlgLnkURL">URL</span><br />
 
172
                                                <input id="txtLnkUrl" style="width: 100%" type="text" onblur="UpdatePreview();" />
 
173
                                        </div>
 
174
                                        <div id="divLnkBrowseServer" align="right">
 
175
                                                <input type="button" value="Browse Server" fcklang="DlgBtnBrowseServer" onclick="LnkBrowseServer();" />
 
176
                                        </div>
 
177
                                        <div>
 
178
                                                <span fcklang="DlgLnkTarget">Target</span><br />
 
179
                                                <select id="cmbLnkTarget">
 
180
                                                        <option value="" fcklang="DlgGenNotSet" selected="selected">&lt;not set&gt;</option>
 
181
                                                        <option value="_blank" fcklang="DlgLnkTargetBlank">New Window (_blank)</option>
 
182
                                                        <option value="_top" fcklang="DlgLnkTargetTop">Topmost Window (_top)</option>
 
183
                                                        <option value="_self" fcklang="DlgLnkTargetSelf">Same Window (_self)</option>
 
184
                                                        <option value="_parent" fcklang="DlgLnkTargetParent">Parent Window (_parent)</option>
 
185
                                                </select>
 
186
                                        </div>
 
187
                                </td>
 
188
                        </tr>
 
189
                </table>
 
190
        </div>
 
191
        <div id="divAdvanced" style="display: none">
 
192
                <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
 
193
                        <tr>
 
194
                                <td valign="top" width="50%">
 
195
                                        <span fcklang="DlgGenId">Id</span><br />
 
196
                                        <input id="txtAttId" style="width: 100%" type="text" />
 
197
                                </td>
 
198
                                <td width="1">
 
199
                                        &nbsp;&nbsp;</td>
 
200
                                <td valign="top">
 
201
                                        <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
 
202
                                                <tr>
 
203
                                                        <td width="60%">
 
204
                                                                <span fcklang="DlgGenLangDir">Language Direction</span><br />
 
205
                                                                <select id="cmbAttLangDir" style="width: 100%">
 
206
                                                                        <option value="" fcklang="DlgGenNotSet" selected="selected">&lt;not set&gt;</option>
 
207
                                                                        <option value="ltr" fcklang="DlgGenLangDirLtr">Left to Right (LTR)</option>
 
208
                                                                        <option value="rtl" fcklang="DlgGenLangDirRtl">Right to Left (RTL)</option>
 
209
                                                                </select>
 
210
                                                        </td>
 
211
                                                        <td width="1%">
 
212
                                                                &nbsp;&nbsp;</td>
 
213
                                                        <td nowrap="nowrap">
 
214
                                                                <span fcklang="DlgGenLangCode">Language Code</span><br />
 
215
                                                                <input id="txtAttLangCode" style="width: 100%" type="text" />&nbsp;
 
216
                                                        </td>
 
217
                                                </tr>
 
218
                                        </table>
 
219
                                </td>
 
220
                        </tr>
 
221
                        <tr>
 
222
                                <td colspan="3">
 
223
                                        &nbsp;</td>
 
224
                        </tr>
 
225
                        <tr>
 
226
                                <td colspan="3">
 
227
                                        <span fcklang="DlgGenLongDescr">Long Description URL</span><br />
 
228
                                        <input id="txtLongDesc" style="width: 100%" type="text" />
 
229
                                </td>
 
230
                        </tr>
 
231
                        <tr>
 
232
                                <td colspan="3">
 
233
                                        &nbsp;</td>
 
234
                        </tr>
 
235
                        <tr>
 
236
                                <td valign="top">
 
237
                                        <span fcklang="DlgGenClass">Stylesheet Classes</span><br />
 
238
                                        <input id="txtAttClasses" style="width: 100%" type="text" />
 
239
                                </td>
 
240
                                <td>
 
241
                                </td>
 
242
                                <td valign="top">
 
243
                                        &nbsp;<span fcklang="DlgGenTitle">Advisory Title</span><br />
 
244
                                        <input id="txtAttTitle" style="width: 100%" type="text" />
 
245
                                </td>
 
246
                        </tr>
 
247
                </table>
 
248
                <span fcklang="DlgGenStyle">Style</span><br />
 
249
                <input id="txtAttStyle" style="width: 100%" type="text" />
 
250
        </div>
 
251
</body>
 
252
</html>