~ubuntu-branches/ubuntu/raring/speeddial/raring

« back to all changes in this revision

Viewing changes to content/firstTimeConfig.xul

  • Committer: Bazaar Package Importer
  • Author(s): Andrea Veri, Andrea Veri, Vikram Dhillon
  • Date: 2009-10-11 12:10:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091011121035-0ysv7mrfd2by5yot
Tags: 0.9.1.1-0ubuntu1

[ Andrea Veri ]

* New upstream release. FFe granted. (LP: #430155)
* debian/control:
  - added missing xpi:enhances, xpi:provides, xpi:recommends
    fields.
  - set depends on misc:depends
  - removed ant B-D, no more needed
  - added Vcs-Browser field.
  - added homepage field.
* debian/rules:
  - cleaned a bit removing useless comments
  - removed MOZ_EXTENSION_PKG field, it's deprecated atm.
  - MOZ_XPI_BUILD_COMMAND is not set to $(null), nothing needs
    to be built manually. 

[ Vikram Dhillon ]

* Updated Standards-Version to 3.8.3
* Updated mozilla-devscripts to 0.16~

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
 
3
 
<?xml-stylesheet href="chrome://global/skin/"?>
4
 
 
5
 
<!DOCTYPE dialog [
6
 
<!ENTITY % firstTimeConfigDTD SYSTEM "chrome://speeddial/locale/firstTimeConfig.dtd">
7
 
%firstTimeConfigDTD;
8
 
<!ENTITY % prefsDTD SYSTEM "chrome://speeddial/locale/prefs.dtd">
9
 
%prefsDTD;
10
 
]>
11
 
 
12
 
<dialog id="firstTimeConfigDialog"
13
 
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
14
 
        xmlns:html="http://www.w3.org/1999/xhtml"
15
 
        ondialogaccept="return onOK(event)"
16
 
        ondialogcancel="return onCancel(event)"
17
 
        onload="Startup();"
18
 
        title="&dialog.title;"
19
 
        buttons="accept,cancel">
20
 
 
21
 
  <script type="application/x-javascript" src="firstTimeConfig.js"/>
22
 
 
23
 
  <vbox flex="1">
24
 
    <checkbox id="loadInNewWindow" label="&loadInNewWindow.label;"/>
25
 
    <checkbox id="loadInNewTab" label="&loadInNewTab.label;"/>
26
 
    <checkbox id="enableGroups" label="&enableGroups.label;"/>
27
 
    <checkbox id="addToolbarIcon" label="&addToolbarIcon.label;"/>
28
 
    <checkbox id="setAsHomePage" label="&setAsHomePage.label;"/>
29
 
    <hbox flex="1" id="thumbnailRenderingBox" style="margin-top: 5px;">
30
 
      <label value="&thumbnailRendering.label;" control="thumbnailRendering"/>
31
 
      <radiogroup id="thumbnailRendering">
32
 
        <vbox>
33
 
          <radio label="&thumbnailRenderingFast.label;"/>
34
 
          <radio label="&thumbnailRenderingQuality.label;"/>
35
 
        </vbox>
36
 
      </radiogroup>
37
 
    </hbox>
38
 
  </vbox>
39
 
</dialog>