~ubuntu-branches/ubuntu/quantal/xdaliclock/quantal

« back to all changes in this revision

Viewing changes to webos/DaliClock/app/views/prefs/prefs-scene.html

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2010-04-20 08:42:20 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100420084220-j7ykvh34b2jx7hyv
Tags: 2.31-1
* New maintainer (Closes: #561233)
* New upstream release (Closes: #578379)
* debian/control:
  + Updated to Standards-Version 3.8.4
  + Added ${misc:Depends} to Depends
  + Updated debhelper dependency to 7
* debian/rules:
  + Do not do append to copyright file trick
  + Used dh_prep instead of dh_clean -k
* Converted package to new source format 3.0 (quilt)
* debian/copyright:
  + Added missing vroot.h copyright
  + Better copyright assignment, year for Author
* debian/patches/spelling-error-in-manpage_xdaliclock:
  + Added patch to fix manpage spelling mistake by Florian Ernst
    <florian@debian.org>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- Dali Clock - a melting digital clock for Palm WebOS.
 
2
     Copyright (c) 1991-2009 Jamie Zawinski <jwz@jwz.org>
 
3
 
 
4
     Permission to use, copy, modify, distribute, and sell this
 
5
     software and its documentation for any purpose is hereby granted
 
6
     without fee, provided that the above copyright notice appear in
 
7
     all copies and that both that copyright notice and this
 
8
     permission notice appear in supporting documentation.  No
 
9
     representations are made about the suitability of this software
 
10
     for any purpose.  It is provided "as is" without express or
 
11
     implied warranty.
 
12
  -->
 
13
 
 
14
<div id="main" class="palm-hasheader">
 
15
 <div class="palm-header">Dali Clock</div>
 
16
 
 
17
 <div class="palm-group unlabeled" id="inputwapper">
 
18
  <div class="palm-list">
 
19
   <div class="palm-row first">
 
20
    <div id="timeModeSelector" x-mojo-element="ListSelector"></div>
 
21
   </div>
 
22
   <div class="palm-row last">
 
23
    <div id="dateModeSelector" x-mojo-element="ListSelector"></div>
 
24
   </div>
 
25
  </div>
 
26
 </div>
 
27
 
 
28
 <div id="twelveHourRadio" x-mojo-element="RadioButton"></div>
 
29
 
 
30
 <div class="palm-group unlabeled" id="inputwapper">
 
31
  <div class="palm-list">
 
32
 
 
33
   <div class="palm-row first">
 
34
    <div class="prefslabel">Target Frame Rate</div>
 
35
    <div id="fpsSlider" x-mojo-element="Slider"></div>
 
36
   </div>
 
37
 
 
38
   <div class="palm-row last">
 
39
    <div class="prefslabel">Color Cycle Speed</div>
 
40
    <div id="cpsSlider" x-mojo-element="Slider"></div>
 
41
   </div>
 
42
 
 
43
  </div>
 
44
 </div>
 
45
 
 
46
</div>
 
47