Tagging the pre-epage code
[quicknote] / src / quicknote
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5  *
6  *  Copyright (C) 2007 Christoph Würstle
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  *
13 """
14
15 import os
16 import sys
17 sys.path.append('/usr/lib/')
18
19 ##
20 ## I18N
21 ##
22 import locale
23 import gettext
24 gettext.install('quicknote', unicode=1)
25
26 #print "x2!"
27
28 #f = open('/home/user/start0.txt', 'a')
29 #f.write('0123456789abcdef')
30 #f.close()
31
32 if __name__ == "__main__":
33                 from quicknoteclasses import libquicknote
34                 app = libquicknote.quicknoteclass() 
35                 app.main() 
36
37                 
38