~im-tehk/showcast/trunk

« back to all changes in this revision

Viewing changes to src/screencastList.py

  • Committer: im.tehk at gmail
  • Date: 2008-05-02 14:17:54 UTC
  • Revision ID: im.tehk@gmail.com-20080502141754-08hb8deos6m19d10
Fixed sample video locations and added the sample video folder

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
 
3
from os import path
3
4
from TreeViews.simpletrees import imager
4
5
 
5
6
class Screencast(object):
18
19
        return [self.Icon, self.Title, self.Description, self]
19
20
 
20
21
raw_list_of_casts = [["How to use Add/Remove",
21
 
                      "/home/tehk/Desktop/20070912_installing_applications_theora_400k_vorbis_512x288.ogg",
 
22
                      path.abspath("SampleVideos/sample1.ogg"),
22
23
                      imager("gnome-app-install", 48),
23
24
                      "Learn how Ubuntu handles installing apps"
24
25
                     ],
25
26
                     ["A guide to Instant Messaging",
26
 
                      "/home/tehk/Desktop/gdm.ogg",
 
27
                      path.abspath("SampleVideos/sample2.ogg"),
27
28
                      imager("pidgin", 48),
28
29
                      "Use Pidgin to chat with your friends\n(AIM, MSN, Gtalk, etc)"
29
30
                     ],
30
31
                     ["Email using Evolution",
31
 
                      "/home/tehk/Desktop/20070912_installing_applications_theora_400k_vorbis_512x288.ogg",
 
32
                      path.abspath("SampleVideos/sample3.ogg"),
32
33
                      imager("evolution", 48),
33
34
                      "How to use Ubuntu's email Client\nto send messages from your email account"
34
35
                     ],
35
36
                     ["Playing Music with Rhythmbox",
36
 
                      "/home/tehk/Desktop/20070912_installing_applications_theora_400k_vorbis_512x288.ogg",
 
37
                      path.abspath("SampleVideos/sample4.ogg"),
37
38
                      imager("audio-x-generic", 48),
38
39
                      "A guide to using rhythmbox,\nGNOMES Music Player"
39
40
                     ]]