comparison firefoxaddon/template/content/about.xul_tmpl @ 0:9869cf47fcf8 default tip

initial commit of Firefox addon template
author k0s <k0scist@gmail.com>
date Sun, 28 Mar 2010 16:25:58 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:9869cf47fcf8
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
3 <!DOCTYPE dialog SYSTEM "chrome://${package}/locale/about.dtd">
4 <dialog title="&about; ${description}" orient="vertical" autostretch="always" onload="sizeToContent()" buttons="accept" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
5 <!-- Original template by Jed Brown -->
6 <groupbox align="center" orient="horizontal">
7 <vbox>
8 <text value="${description}" style="font-weight: bold; font-size: x-large;"/>
9 <text value="&version; 1.0"/>
10 <separator class="thin"/>
11 <text value="&createdBy;" style="font-weight: bold;"/>
12 <text value="${author}"/>
13 <separator class="thin"/>
14 <text value="&homepage;" style="font-weight: bold;"/>
15 <text value="${url}"
16 class="url"
17 onclick="window.open('${url}'); window.close();"/>
18 <separator class="thin"/>
19 </vbox>
20 </groupbox>
21 </dialog>