File: TODO

package info (click to toggle)
live-magic 1.5%2Blenny2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 544 kB
  • ctags: 279
  • sloc: python: 1,589; sh: 85; makefile: 9
file content (50 lines) | stat: -rw-r--r-- 1,356 bytes parent folder | download
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
live-magic TODO
===============

(Wizard)

 * Add simple package handling to wizard?

 * Add boolean for whether to use mirror as LH_MIRROR_BINARY mirror?

(General)

 * Translations

(Expert mode)

 * File selectors (preseed, splash screen)  (gtk.Entry with 'Select' button)

 * Tasks - task list sufficiently static? Probably needs its own page?

 * Dependencies between options. For example, it doesn't make sense
   to display the LH_ISO_AUTHOR etc if the ISO binary type is not
   selected.

   depends = [
       'common/LH_ISO_APPLICATION': lambda: 'iso' in self.model.binary.LH_BINARY_IMAGES,
       'common/LH_GRUB_SPLASH': lambda: self.model.binary.LH_BOOTLOADER == 'grub',
   ]

   "Hidden" depends - eg. LH_BOOTSTRAP_KEYRING only makes sense when using
   debootstrap (cdebootstrap does not have this option afaict).

(API)

 * Add build() to LiveHelperConfiguration?

     Would allow saner build scripts:

     #!/usr/bin/env python

     from DebianLive import Config
     lh = Config('.')

     lh.binary.LH_BINARY_IMAGES = ['iso', 'usb-hdd', 'net']
     for pkg_list in ['gnome', 'kde', 'standard', 'rescue']:
         lh.common.LH_PACKAGES_LISTS = pkg_list
         result = lh.build(save=True)
         print type(result), result

     # Would need some way of saving logs.
     # Reliable method of getting locations of resulting ISOs.