blob: a9bee40ea960454ec9c521343dee911e7b2c5f32 (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<?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="tbSyncAccountManager.initCommunity();"
title="Community" >
<hbox flex="1" id="mainframe">
<vbox flex="1">
<html:p>
<html:b>__TBSYNCMSG_manager.supporter.contributors__</html:b>
<html:div id="listOfContributors" style="margin-top:10px">
<html:div provider="" style="width:225px; margin: 0 0 10px 0; float:left;">
<html:img
src=""
style="width:48px; height:48px; margin:4px 0 0 10px; float:left"
onclick="TbSync.manager.openLink(TbSync.providers.loadedProviders[this.parentNode.getAttribute('provider')].addon.homepageURL);"
onmouseover="this.style.cursor='pointer'"
onmouseout="this.style.cursor='default'" />
<html:div style="padding-left: 65px;">
<html:div>__TBSYNCMSG_manager.title__</html:div>
<html:div style="font-style:italic">__TBSYNCMSG_manager.provider4tbsync__</html:div>
<html:div style="font-style:italic;">[<html:span
onclick="TbSync.manager.openLink(TbSync.providers.loadedProviders[this.parentNode.parentNode.parentNode.getAttribute('provider')].addon.contributorsURL);"
onmouseover="this.style.cursor='pointer'"
onmouseout="this.style.cursor='default'"
style="color:blue;text-decoration: underline;">__TBSYNCMSG_manager.supporter.details__</html:span>]</html:div>
</html:div>
</html:div>
<html:div provider="" style="width:225px; margin: 0 0 10px 0; float:left;">
<html:img
src="chrome://tbsync/content/skin/tbsync64.png"
style="width:48px; height:48px; margin:4px 0 0 10px; float:left"
onclick="TbSync.manager.openLink(TbSync.addon.homepageURL);"
onmouseover="this.style.cursor='pointer'"
onmouseout="this.style.cursor='default'" />
<html:div style="padding-left: 65px;">
<html:span></html:span>
<html:div>TbSync</html:div>
<html:div style="font-style:italic">__TBSYNCMSG_manager.shorttitle__</html:div>
<html:div style="font-style:italic;">[<html:span
onclick="TbSync.manager.openLink(TbSync.addon.contributorsURL);"
onmouseover="this.style.cursor='pointer'"
onmouseout="this.style.cursor='default'"
style="color:blue;text-decoration: underline;">__TBSYNCMSG_manager.supporter.details__</html:span>]</html:div>
</html:div>
</html:div>
</html:div>
</html:p>
<html:p>
<html:b>__TBSYNCMSG_manager.supporter.sponsors__</html:b>
<html:div id="listOfSponsors" style="margin-top:10px">
<html:div link="" style="width:225px; margin: 0 0 10px 0; float:left;">
<html:img src="chrome://tbsync/content/skin/user48.png" style="width:48px; height:48px; padding:0px; margin:0 0 0 10px; border:1px solid #d3d3d3; float:left" onclick="if (this.parentNode.getAttribute('link') != '') {TbSync.manager.openLink(this.parentNode.getAttribute('link'));}" onmouseover="if (this.parentNode.getAttribute('link') != '') {this.style.cursor='pointer'}" onmouseout="this.style.cursor='default'" />
<html:div style="padding-left: 65px;">
<html:div >Name</html:div>
<html:div style="font-style:italic">Description</html:div>
</html:div>
</html:div>
</html:div>
</html:p>
</vbox>
</hbox>
<script type="text/javascript" src="chrome://tbsync/content/manager/accountManager.js" />
<script type="text/javascript" src="chrome://tbsync/content/scripts/locales.js" />
</window>
|