1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://tbsync/content/manager/manager.css" type="text/css"?>
<window
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="tbSyncManageProvider.prepInstall();"
title="Install additional synchronization provider for TbSync" >
<hbox flex="1" id="mainframe">
<vbox flex="1">
<hbox>
<html:p style="font-weight: bold" id="header"></html:p>
</hbox>
<html:p>
__TBSYNCMSG_manager.installprovider.link__
</html:p>
<html:p id="link" onmouseover="this.style.cursor='pointer'" onmouseout="this.style.cursor='default'" onclick="TbSync.manager.prefWindowObj.tbSyncAccountManager.selectTab(0); TbSync.manager.openTBtab(this.getAttribute('link'));" style="color:blue;text-decoration: underline;padding-left:1em;">
</html:p>
<html:p id="warning" style="font-weight: bold">
__TBSYNCMSG_manager.installprovider.warning__
</html:p>
</vbox>
</hbox>
<script type="text/javascript" src="chrome://tbsync/content/manager/manageProvider.js" />
<script type="text/javascript" src="chrome://tbsync/content/scripts/locales.js" />
</window>
|