restored fixes and tweaks on blog mod
[elgg.git] / _tinymce / docs / option_external_link_list_url.html
blob52dfdaebcbcef301e906ddd807faa4393ae3f5d9
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>Option: external_link_list_url</title>
5 <link href="css/screen.css" rel="stylesheet" type="text/css" />
6 </head>
7 <body>
9 <div class="header">
10 <h1>Option: external_link_list_url</h1>
11 </div>
13 <div class="content">
14 <p>
15 This option enables you to have a external list of links this list of links can be generated by a server side page and then inserted into the link dialog windows of TinyMCE. The links can be to internal site documents or external URLs.
16 </p>
18 <div class="separator"></div>
20 <h3>Example of usage of the external_link_list_url option:</h3>
21 <div class="example">
22 <pre>
23 tinyMCE.init({
24 ...
25 <strong>external_link_list_url : "myexternallist.js"</strong>
26 });
27 </pre>
28 </div>
30 <div class="separator"></div>
32 <h3>Example of a external link list file: (myexternallist.js)</h3>
33 <div class="example">
34 <pre>
35 var tinyMCELinkList = new Array(
36 // Name, URL
37 ["Moxiecode", "http://www.moxiecode.com"],
38 ["Freshmeat", "http://www.freshmeat.com"],
39 ["Sourceforge", "http://www.sourceforge.com"]
41 </pre>
42 </div>
43 </div>
45 <div class="footer">
46 <div class="helpindexlink"><a href="index.html">Index</a></div>
47 <div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
48 <br style="clear: both" />
49 </div>
51 </body>
52 </html>