X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=todo.py;h=6cade91bf560fb45b42225631aa5cd9e5a089fee;hb=bd32647c67dd9a4979a39efaf31bfe63c82c72d0;hp=42639a11c9f28fdfbe34991af191e3bd8dc122ee;hpb=472874343c229fc77136e1cc3bae5a1d8bc543f9;p=misc diff --git a/todo.py b/todo.py index 42639a1..6cade91 100644 --- a/todo.py +++ b/todo.py @@ -1,4 +1,4 @@ -from plomlib import PlomDB, run_server, PlomHandler, PlomException +from plomlib import PlomDB, run_server, PlomHandler, PlomException import json from uuid import uuid4 from datetime import datetime, timedelta @@ -31,10 +31,11 @@ input[type="number"] { font-family: monospace; text-align: right; } input[type="text"] { width: 100%; box-sizing: border-box; } -tasks: list add | day: -choose tasks -do tasks -| calendar +tasks: list add | day: +choose tasks +do tasks +| calendar +| unset cookie
""" form_footer = '\n' @@ -50,16 +51,17 @@ to: {% for date, day in days.items() | sort() %} {% if day.weekday == "Mo" %}{% endif %} -{{ day.weekday }} {{ date }} |{{ '%04.1f' % day.todos_sum|round(2) }}| {{ day.comment|e }} +{{ day.weekday }} {{ date }} |{{ '%04.1f' % day.todos_sum|round(2) }}| {{ day.comment|e }} {% for task, todo in day.todos.items() | sort(attribute='1.title', reverse=True) %} {% if todo.visible %} -{% if todo.done %}✓{% else %}  {% endif %}{{ todo.title }}{{ todo.comment|e }} +{% if todo.done %}✓{% else %}  {% endif %}{%if "cancelled" in todo.tags%}{% endif %}{% if "deadline" in todo.tags %}DEADLINE: {% endif %}{{ todo.title|e }}{%if "cancelled" in todo.tags%}{% endif %}{{ todo.comment|e }} {% endif %} {% endfor %} {% endfor %} """ todo_tmpl = """ +

todo

@@ -69,22 +71,38 @@ todo_tmpl = """ + + +
day weight
comment
done
day tags +{% for tag in db.t_tags | sort %} +{% if tag in todo.task.tags %} âœ“{% else %}{% endif %} {{ tag }}
+{% endfor %} +add: +
""" task_tmpl = """ +

task

- + +
title
history
    {% for k,v in task.title_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
default weight
history
    {% for k,v in task.default_weight_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
tags
history
    {% for k,v in task.tags_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
tags +{% for tag in db.t_tags | sort %} + {{ tag }}
+{% endfor %} +add:
+
history
    {% for k,v in task.tags_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
+
""" day_tmpl = """

- hide unchosen hide done | -prev next | + hide unchosen hide done | +prev next | date: | {{ db.selected_day.todos_sum|round(2) }} ({{ db.selected_day.todos_sum2|round(2)}}) | @@ -92,16 +110,27 @@ comment:

- + {% for uuid, t in db.tasks.items() | sort(attribute='1.title') %} -{% if t.visible %} +{% if t.visible and (uuid not in db.selected_day.todos.keys() or db.selected_day.todos[uuid].visible) %} - - - - - + +{% if uuid in db.selected_day.todos.keys() %} + + + + + + +{% else %} + + + + + +{% endif %} {% endif %} {% endfor %} @@ -120,14 +149,14 @@ mandatory tags: {% for tag in db.t_tags | sort %} {% endfor %} - -{% endfor %} + +{% endfor %} +
forbidden tags: {% for not_filter in db.t_filter_not %} @@ -136,14 +165,14 @@ forbidden tags: {% for tag in db.t_tags | sort %} {% endfor %} - -{% endfor %} + +{% endfor %} +

""" tasks_tmpl = """ @@ -176,7 +205,7 @@ class Task: def _last_of_history(self, history, default): keys = sorted(history.keys()) - return default if 0 == len(history) else history[keys[-1]] + return default if 0 == len(history) else history[keys[-1]] @classmethod def from_dict(cls, db, d): @@ -195,11 +224,11 @@ class Task: self._set_with_history(self.default_weight_history, default_weight) def default_weight_at(self, queried_date): - ret = self.default_weight_history[sorted(self.default_weight_history.keys())[0]] + ret = self.default_weight_history[sorted(self.default_weight_history.keys())[0]] for date_key, default_weight in self.default_weight_history.items(): if date_key > f'{queried_date} 23:59:59': break - ret = default_weight + ret = default_weight return ret @property @@ -215,7 +244,7 @@ class Task: self._set_with_history(self.title_history, title) def title_at(self, queried_date): - ret = self.title_history[sorted(self.title_history.keys())[0]] + ret = self.title_history[sorted(self.title_history.keys())[0]] for date_key, title in self.title_history.items(): if date_key > f'{queried_date} 23:59:59': break @@ -234,16 +263,16 @@ class Task: def tags(self, tags): self._set_with_history(self.tags_history, set(tags)) - @property - def tags_joined(self): - return ';'.join(sorted(list(self.tags))) + # @property + # def tags_joined(self): + # return ';'.join(sorted(list(self.tags))) - @tags_joined.setter - def tags_joined(self, tags_string): - tags = set() - for tag in [tag.strip() for tag in tags_string.split(';') if tag.strip() != '']: - tags.add(tag) - self.tags = tags + # @tags_joined.setter + # def tags_joined(self, tags_string): + # tags = set() + # for tag in [tag.strip() for tag in tags_string.split(';') if tag.strip() != '']: + # tags.add(tag) + # self.tags = tags def to_dict(self): return { @@ -262,9 +291,9 @@ class Day: def __init__(self, db, todos=None, comment=''): self.db = db - self.todos = todos if todos else {} + self.todos = todos if todos else {} self.comment = comment - self.archived = True + self.archived = True @classmethod def from_dict(cls, db, d): @@ -310,18 +339,19 @@ class Day: class Todo: - def __init__(self, day, done=False, day_weight=None, comment=''): - self.day = day + def __init__(self, day, done=False, day_weight=None, comment='', day_tags=None): + self.day = day self.done = done self.day_weight = day_weight self.comment = comment + self.day_tags = day_tags if day_tags else set() @classmethod def from_dict(cls, day, d): - return cls(day, d['done'], d['day_weight'], d['comment']) + return cls(day, d['done'], d['day_weight'], d['comment'], set(d['day_tags'])) def to_dict(self): - return {'done': self.done, 'day_weight': self.day_weight, 'comment': self.comment} + return {'done': self.done, 'day_weight': self.day_weight, 'comment': self.comment, 'day_tags': list(self.day_tags)} @property def default_weight(self): @@ -344,33 +374,60 @@ class Todo: def title(self): return self.task.title_at(self.day.date) + # @property + # def day_tags_joined(self): + # return ';'.join(sorted(list(self.day_tags))) + + # @day_tags_joined.setter + # def day_tags_joined(self, tags_string): + # tags = set() + # for tag in [tag.strip() for tag in tags_string.split(';') if tag.strip() != '']: + # tags.add(tag) + # self.day_tags = tags + + @property + def tags(self): + return self.day_tags | self.task.tags + class TodoDB(PlomDB): def __init__(self, prefix, selected_date=None, t_filter_and = None, t_filter_not = None, hide_unchosen=False, hide_done=False): self.prefix = prefix - self.selected_date = selected_date if selected_date else str(datetime.now())[:10] - self.t_filter_and = t_filter_and if t_filter_and else [] + self.selected_date = selected_date if selected_date else str(datetime.now())[:10] + self.t_filter_and = t_filter_and if t_filter_and else [] self.t_filter_not = t_filter_not if t_filter_not else [] - self.hide_unchosen = hide_unchosen - self.hide_done = hide_done + self.hide_unchosen = hide_unchosen + self.hide_done = hide_done self.days = {} self.tasks = {} - self.t_tags = set() + self.t_tags = set() super().__init__(db_path) def read_db_file(self, f): d = json.load(f) for date, day_dict in d['days'].items(): self.days[date] = self.add_day(dict_source=day_dict) + for day in self.days.values(): + for todo in day.todos.values(): + for tag in todo.day_tags: + self.t_tags.add(tag) for uuid, t_dict in d['tasks'].items(): t = self.add_task(id_=uuid, dict_source=t_dict) - t.visible = len([tag for tag in self.t_filter_and if not tag in t.tags]) == 0\ - and len([tag for tag in self.t_filter_not if tag in t.tags]) == 0\ - and ((not self.hide_unchosen) or uuid in self.selected_day.todos)\ - and ((not self.hide_done) or (uuid in self.selected_day.todos and not self.selected_day.todos[uuid].done)) for tag in t.tags: self.t_tags.add(tag) + self.set_visibilities() + + def set_visibilities(self): + for uuid, t in self.tasks.items(): + t.visible = len([tag for tag in self.t_filter_and if not tag in t.tags]) == 0\ + and len([tag for tag in self.t_filter_not if tag in t.tags]) == 0\ + and ((not self.hide_unchosen) or uuid in self.selected_day.todos.keys()) + for day in self.days.values(): + for todo in day.todos.values(): + todo.visible = len([tag for tag in self.t_filter_and if not tag in todo.day_tags | todo.task.tags ]) == 0\ + and len([tag for tag in self.t_filter_not if tag in todo.day_tags | todo.task.tags ]) == 0\ + and ((not self.hide_done) or (not todo.done)) def to_dict(self): d = { @@ -397,13 +454,13 @@ class TodoDB(PlomDB): else: self.days[new_date] = self.selected_day del self.days[self.selected_date] - self.selected_date = new_date + self.selected_date = new_date def write(self): dates_to_purge = [] for date, day in self.days.items(): if len(day.todos) == 0 and len(day.comment) == 0: - dates_to_purge += [date] + dates_to_purge += [date] for date in dates_to_purge: del self.days[date] self.write_text_to_db(json.dumps(self.to_dict())) @@ -414,62 +471,79 @@ class TodoDB(PlomDB): self.tasks[id_] = t if return_id: return id_, t - else: + else: return t def add_day(self, dict_source=None): return Day.from_dict(self, dict_source) if dict_source else Day(self) def show_day(self): - current_date = datetime.strptime(self.selected_date, DATE_FORMAT) - prev_date = current_date - timedelta(days=1) + current_date = datetime.strptime(self.selected_date, DATE_FORMAT) + prev_date = current_date - timedelta(days=1) prev_date_str = prev_date.strftime(DATE_FORMAT) - next_date = current_date + timedelta(days=1) + next_date = current_date + timedelta(days=1) next_date_str = next_date.strftime(DATE_FORMAT) return Template(form_header_tmpl + tag_filters_tmpl + day_tmpl + form_footer).render(db=self, action=self.prefix+'/day', prev_date=prev_date_str, next_date=next_date_str) def show_calendar(self, start_date_str, end_date_str): + self.t_filter_and = ['calendar'] + self.t_filter_not = ['deleted'] + self.set_visibilities() days_to_show = {} - target_start = start_date_str if start_date_str else sorted(self.days.keys())[0] - # target_start = str(datetime.now())[:10] if 'today' == target_start else target_start - target_end = end_date_str if end_date_str else sorted(self.days.keys())[-1] - # todays_date = str(datetime.now())[:10] + todays_date = str(datetime.now())[:10] + target_start_str = start_date_str if start_date_str else sorted(self.days.keys())[0] + target_start = todays_date if target_start_str == 'today' else target_start_str + target_end_str = end_date_str if end_date_str else sorted(self.days.keys())[-1] + target_end = todays_date if target_end_str == 'today' else target_end_str start_date = datetime.strptime(target_start, DATE_FORMAT) end_date = datetime.strptime(target_end, DATE_FORMAT) for n in range(int((end_date - start_date).days) + 1): current_date_obj = start_date + timedelta(n) - current_date = current_date_obj.strftime(DATE_FORMAT) + current_date = current_date_obj.strftime(DATE_FORMAT) if current_date not in self.days.keys(): days_to_show[current_date] = self.add_day() else: - days_to_show[current_date] = self.days[current_date] + days_to_show[current_date] = self.days[current_date] days_to_show[current_date].weekday = datetime.strptime(current_date, DATE_FORMAT).strftime('%A')[:2] - for task_uuid, todo in days_to_show[current_date].todos.items(): - todo.visible = self.tasks[task_uuid].visible return Template(form_header_tmpl + calendar_tmpl + form_footer).render(db=self, days=days_to_show, action=self.prefix+'/calendar', today=str(datetime.now())[:10], start_date=start_date_str, end_date=end_date_str) def show_todo(self, task_uuid, selected_date): todo = self.days[selected_date].todos[task_uuid] return Template(form_header_tmpl + todo_tmpl + form_footer).render(db=self, todo=todo, action=self.prefix+'/todo') - def update_todo(self, task_uuid, date, day_weight, done, comment): + def update_todo_mini(self, task_uuid, date, day_weight, done): if task_uuid in self.days[date].todos.keys(): todo = self.days[date].todos[task_uuid] else: todo = self.days[date].add_todo(task_uuid) todo.day_weight = float(day_weight) if len(day_weight) > 0 else None - todo.done = done - todo.comment = comment + todo.done = done + return todo + + def update_todo(self, task_uuid, date, day_weight, done, comment, day_tags_joined, day_tags_checked): + todo = self.update_todo_mini(task_uuid, date, day_weight, done) + todo.comment = comment + day_tags = set() + for tag in [tag.strip() for tag in day_tags_joined.split(';') if tag.strip() != '']: + day_tags.add(tag) + for tag in day_tags_checked: + day_tags.add(tag) + todo.day_tags = day_tags def show_task(self, id_): task = self.tasks[id_] if id_ else self.add_task() return Template(form_header_tmpl + task_tmpl + form_footer).render(db=self, task=task, action=self.prefix+'/task') - def update_task(self, id_, title, default_weight, tags_joined): + def update_task(self, id_, title, default_weight, tags_joined, tags_checked): task = self.tasks[id_] if id_ in self.tasks.keys() else self.add_task(id_) task.title = title task.default_weight = float(default_weight) if len(default_weight) > 0 else None - task.tags_joined = tags_joined + tags = set() + for tag in [tag.strip() for tag in tags_joined.split(';') if tag.strip() != '']: + tags.add(tag) + for tag in tags_checked: + tags.add(tag) + task.tags = tags def show_tasks(self): return Template(form_header_tmpl + tag_filters_tmpl + tasks_tmpl + form_footer).render(db=self, action=self.prefix+'/tasks') @@ -477,64 +551,86 @@ class TodoDB(PlomDB): class TodoHandler(PlomHandler): - + + def config_init(self): + return { + 'cookie_name': 'todo_cookie', + 'prefix': '', + 'cookie_path': '/' + } + def app_init(self, handler): default_path = '/todo' - handler.add_route('GET', default_path, self.show_db) - handler.add_route('POST', default_path, self.write_db) - return 'todo', default_path + handler.add_route('GET', default_path, self.show_db) + handler.add_route('POST', default_path, self.write_db) + return 'todo', {'cookie_name': 'todo_cookie', 'prefix': default_path, 'cookie_path': default_path} def do_POST(self): + self.try_do(self.config_init) self.try_do(self.write_db) def write_db(self): from urllib.parse import urlencode - prefix = self.apps['todo'] if hasattr(self, 'apps') else '' + app_config = self.apps['todo'] if hasattr(self, 'apps') else self.config() length = int(self.headers['content-length']) postvars = parse_qs(self.rfile.read(length).decode(), keep_blank_values=1) parsed_url = urlparse(self.path) - db = TodoDB(prefix=prefix) + db = TodoDB(prefix=app_config['prefix']) - if parsed_url.path == prefix + '/calendar': - start = postvars['start'][0] if len(postvars['start'][0]) > 0 else '' - end = postvars['end'][0] if len(postvars['end'][0]) > 0 else '' - homepage = f'{prefix}/calendar?t_and=calendar&start={start}&end={end}' + if parsed_url.path == app_config['prefix'] + '/calendar': + start = postvars['start'][0] if len(postvars['start'][0]) > 0 else '-' + end = postvars['end'][0] if len(postvars['end'][0]) > 0 else '-' + homepage = f'{app_config["prefix"]}/calendar?start={start}&end={end}' - elif parsed_url.path == prefix + '/todo': + elif parsed_url.path == app_config['prefix'] + '/todo': task_uuid = postvars['task_uuid'][0] date = postvars['date'][0] - db.update_todo(task_uuid, date, postvars['day_weight'][0], 'done' in postvars.keys(), postvars['comment'][0]) - homepage = f'{prefix}/todo?task={task_uuid}&date={date}' - - elif parsed_url.path == prefix + '/task': + tags_checked = [] + prefix = 'day_tag_' + for k in postvars.keys(): + if k.startswith(prefix): + tags_checked += [k[len(prefix):]] + db.update_todo(task_uuid, date, postvars['day_weight'][0], 'done' in postvars.keys(), postvars['comment'][0], postvars['day_tags_joined'][0], tags_checked) + homepage = f'{app_config["prefix"]}/todo?task={task_uuid}&date={date}' + + elif parsed_url.path == app_config['prefix'] + '/task': id_ = postvars['id'][0] - db.update_task(id_, postvars['title'][0], postvars['default_weight'][0], postvars['tags'][0]) - homepage = f'{prefix}/task?id={id_}' - - elif parsed_url.path in {prefix + '/tasks', prefix + '/day'}: + tags_checked = [] + prefix = 'tag_' + for k in postvars.keys(): + if k.startswith(prefix): + tags_checked += [k[len(prefix):]] + db.update_task(id_, postvars['title'][0], postvars['default_weight'][0], postvars['tags_joined'][0], tags_checked) + homepage = f'{app_config["prefix"]}/task?id={id_}' + + elif parsed_url.path in {app_config['prefix'] + '/tasks', app_config['prefix'] + '/day'}: + data = [] for target in postvars['t_and']: - if not target in db.t_filter_and: + if len(target) > 0 and not target in db.t_filter_and: db.t_filter_and += [target] + if len(db.t_filter_and) == 0: + data += [('t_and', '-')] for target in postvars['t_not']: - if not target in db.t_filter_not: + if len(target) > 0 and not target in db.t_filter_not: db.t_filter_not += [target] - if 'hide_unchosen' in postvars.keys(): - db.hide_unchosen = True - if 'hide_done' in postvars.keys(): - db.hide_done = True - data = [('t_and', f) for f in db.t_filter_and] + [('t_not', f) for f in db.t_filter_not] + [('hide_unchosen', int(db.hide_unchosen))] + [('hide_done', int(db.hide_done))] - - if parsed_url.path == prefix + '/tasks': + if len(db.t_filter_not) == 0: + data += [('t_not', '-')] + data += [('t_and', f) for f in db.t_filter_and] + [('t_not', f) for f in db.t_filter_not] + if parsed_url.path == app_config['prefix'] + '/tasks': encoded_params = urlencode(data) - homepage = f'{prefix}/tasks?{encoded_params}' + homepage = f'{app_config["prefix"]}/tasks?{encoded_params}' + + elif parsed_url.path == app_config['prefix'] + '/day': + db.hide_unchosen = 'hide_unchosen' in postvars.keys() + db.hide_done = 'hide_done' in postvars.keys() + data += [('hide_unchosen', int(db.hide_unchosen))] + [('hide_done', int(db.hide_done))] - elif parsed_url.path == prefix + '/day': db.selected_date = postvars['original_selected_date'][0] new_selected_date = postvars['new_selected_date'][0] try: datetime.strptime(new_selected_date, DATE_FORMAT) except ValueError: - raise PlomException(f"{prefix} bad date string: {new_selected_date}") + raise PlomException(f'{app_config["prefix"]} bad date string: {new_selected_date}') if new_selected_date != db.selected_date: db.change_selected_days_date(new_selected_date) if 't_uuid' in postvars.keys(): @@ -546,50 +642,106 @@ class TodoHandler(PlomHandler): for i, uuid in enumerate(postvars['t_uuid']): if uuid in postvars['choose']: done = 'done' in postvars and uuid in postvars['done'] - db.update_todo(uuid, db.selected_date, postvars['day_weight'][i], done, postvars['todo_comment'][i]) + db.update_todo_mini(uuid, db.selected_date, postvars['day_weight'][i], done) if 'day_comment' in postvars.keys(): db.selected_day.comment = postvars['day_comment'][0] - data += [('date', db.selected_date)] + data += [('selected_date', db.selected_date)] encoded_params = urlencode(data) - homepage = f'{prefix}/day?{encoded_params}' + homepage = f'{app_config["prefix"]}/day?{encoded_params}' db.write() self.redirect(homepage) def do_GET(self): + self.try_do(self.config_init) self.try_do(self.show_db) def show_db(self): - prefix = self.apps['todo'] if hasattr(self, 'apps') else '' + app_config = self.apps['todo'] if hasattr(self, 'apps') else self.config() + cookie_db = self.get_cookie_db(app_config['cookie_name']) parsed_url = urlparse(self.path) params = parse_qs(parsed_url.query) - selected_date = params.get('date', [None])[0] - t_filter_and = params.get('t_and', []) - t_filter_not = params.get('t_not', ['deleted']) - hide_unchosen_params = params.get('hide_unchosen', []) - hide_unchosen = len(hide_unchosen_params) > 0 and hide_unchosen_params[0] != '0' - hide_done_params = params.get('hide_done', []) - hide_done = len(hide_done_params) > 0 and hide_done_params[0] != '0' - db = TodoDB(prefix, selected_date, t_filter_and, t_filter_not, hide_unchosen, hide_done) - if parsed_url.path == prefix + '/day': + selected_date = None + t_filter_and = None + t_filter_not = None + hide_unchosen = False + hide_done = False + if parsed_url.path in {app_config['prefix'] + '/day', app_config['prefix'] + '/tasks'}: + selected_date = params.get('selected_date', [None])[0] + if selected_date is None and 'selected_date' in cookie_db.keys(): + selected_date = cookie_db['selected_date'] + cookie_db['selected_date'] = selected_date + t_filter_and = params.get('t_and', None) + if t_filter_and is None and 't_and' in cookie_db.keys(): + t_filter_and = cookie_db['t_and'] + elif t_filter_and == ['-']: + t_filter_and = None + cookie_db['t_and'] = t_filter_and + t_filter_not = params.get('t_not', None) + if t_filter_not is None: + if 't_not' in cookie_db.keys(): + t_filter_not = cookie_db['t_not'] + else: + t_filter_not = ['deleted'] + elif t_filter_not == ['-']: + t_filter_not = None + cookie_db['t_not'] = t_filter_not + if parsed_url.path == app_config['prefix'] + '/day': + hide_unchosen_params = params.get('hide_unchosen', []) + if 0 == len(hide_unchosen_params): + if 'hide_unchosen' in cookie_db.keys(): + hide_unchosen = cookie_db['hide_unchosen'] + else: + hide_unchosen = hide_unchosen_params[0] != '0' + cookie_db['hide_unchosen'] = hide_unchosen + hide_done_params = params.get('hide_done', []) + if 0 == len(hide_done_params): + if 'hide_done' in cookie_db.keys(): + hide_done = cookie_db['hide_done'] + else: + hide_done = hide_done_params[0] != '0' + cookie_db['hide_done'] = hide_done + db = TodoDB(app_config['prefix'], selected_date, t_filter_and, t_filter_not, hide_unchosen, hide_done) + if parsed_url.path == app_config['prefix'] + '/day': page = db.show_day() - elif parsed_url.path == prefix + '/todo': + elif parsed_url.path == app_config['prefix'] + '/todo': + todo_date = params.get('date', [None])[0] task_uuid = params.get('task', [None])[0] - page = db.show_todo(task_uuid, selected_date) - elif parsed_url.path == prefix + '/task': + page = db.show_todo(task_uuid, todo_date) + elif parsed_url.path == app_config['prefix'] + '/task': id_ = params.get('id', [None])[0] page = db.show_task(id_) - elif parsed_url.path == prefix + '/tasks': + elif parsed_url.path == app_config['prefix'] + '/tasks': page = db.show_tasks() - elif parsed_url.path == prefix + '/add_task': + elif parsed_url.path == app_config['prefix'] + '/add_task': page = db.show_task(None) - else: + elif parsed_url.path == app_config['prefix'] + '/unset_cookie': + page = 'no cookie to unset.' + if len(cookie_db) > 0: + self.unset_cookie(app_config['cookie_name'], app_config['cookie_path']) + page = 'cookie unset!' + else: start_date = params.get('start', [None])[0] + if start_date is None: + if 'calendar_start' in cookie_db.keys(): + start_date = cookie_db['calendar_start'] + else: + start_date = 'today' + elif start_date == '-': + start_date = None + cookie_db['calendar_start'] = start_date end_date = params.get('end', [None])[0] + if end_date is None and 'calendar_end' in cookie_db.keys(): + end_date = cookie_db['calendar_end'] + elif end_date == '-': + end_date = None + cookie_db['calendar_end'] = end_date page = db.show_calendar(start_date, end_date) - header = Template(html_head).render(db=db, prefix=prefix, date=selected_date) + header = Template(html_head).render(db=db, prefix=app_config['prefix'], date=selected_date) + if parsed_url.path != app_config['prefix'] + '/unset_cookie': + self.set_cookie(app_config['cookie_name'], app_config['cookie_path'], cookie_db) self.send_HTML(header + page) -if __name__ == "__main__": +if __name__ == "__main__": run_server(server_port, TodoHandler)
taskchoose?done?weightcomment
taskchoose?done?weightedit?day tagscomment
] {{ t.current_title|e }}tags: {% for tag in t.tags | sort %}{{ tag }} {% endfor %}
] {{ t.current_title|e }}tags: {% for tag in t.tags | sort %}{{ tag }} {% endfor %}
edit{% for tag in db.selected_day.todos[uuid].day_tags | sort %}{{ tag }} {% endfor %}{{ db.selected_day.todos[uuid].comment|e }} +