-
Notifications
You must be signed in to change notification settings - Fork 1
/
Universe.py
executable file
·73 lines (69 loc) · 1.79 KB
/
Universe.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
##########################################################################
#
# Gaia, task list organiser in with Caldav server sync.
#
# Copyright (C) 2013-2014 Dr Adam S. Candy.
# Dr Adam S. Candy, [email protected]
#
# This file is part of the Gaia project.
#
# Gaia is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Gaia is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Gaia. If not, see <http://www.gnu.org/licenses/>.
#
##########################################################################
class colour:
red = ''
redbright = ''
cyan = ''
cyanbright = ''
blue = ''
bluebright = ''
yellow = ''
yellowbright = ''
green = ''
greenbright = ''
magenta = ''
magentabright = ''
grey = ''
end = ''
class universe:
timezone = None
statefile = None
dataroot = None
logfile = None
backuproot = None
backupcalendars = None
prowllast = None
verbose = None
debug = None
errors = None
now = None
dry = None
bufferreturned = None
log = None
killed = None
calendarcache = None
calendaraddresstoname = None
calendarctag = None
defaulttime = None
principalurl = None
# Might not be able to write to? Do a test write?
reportline = None
reportcache = None
auxlists = None
category_order = None
skipweekendlists = None
interlude = None
next_char = None
routine = None