Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

# -*- coding: UTF-8 -*- 

# Copyright 2013-2014 Luc Saffre 

# License: BSD (see file COPYING for details) 

 

""" 

 

""" 

 

 

from __future__ import unicode_literals 

 

#~ try: 

 

from lino.projects.std.settings import * 

 

#~ from django.utils.translation import ugettext_lazy as _ 

 

 

class Site(Site): 

 

    title = "Lino Events" 

    verbose_name = "Lino Events" 

    #~ verbose_name = "Lino Cosi" 

    #~ description = _("a Lino application to make Belgian accounting simple.") 

    #~ version = "0.1" 

    #~ url = "http://www.lino-framework.org/autodoc/lino.projects.cosi" 

    #~ author = 'Luc Saffre' 

    #~ author_email = 'luc.saffre@gmail.com' 

 

    # demo_fixtures = 'std few_countries few_cities vor'.split() 

    demo_fixtures = 'std demo vor'.split() 

 

    languages = 'de fr nl' 

    #~ languages = ['de','fr','nl'] 

    #~ languages = 'de fr et en'.split() 

 

    def get_installed_apps(self): 

        yield super(Site, self).get_installed_apps() 

        yield 'lino.modlib.system' 

        yield 'lino.modlib.countries' 

        yield 'lino.modlib.events' 

 

 

SITE = Site(globals()) 

 

#~ except Exception as e: 

    #~ import traceback 

    #~ traceback.print_exc(e) 

    #~ sys.exit(1) 

  #~