Compare commits

..

No commits in common. "2196c13b147536ea546fb10c92f0dc63fae320e1" and "b126e178b119f999bd2e0d286d4c8e0b37e1709d" have entirely different histories.

2 changed files with 5 additions and 11 deletions

View File

@ -5,9 +5,8 @@ from datetime import datetime
from typing import List
import org_rw
from org_rw import OrgTime, OrgDoc
from org_rw import OrgTime
EXTENSIONS = ( ".org", ".org.txt" )
def is_today(ot: OrgTime):
now = datetime.now()
@ -38,19 +37,17 @@ class Agenda:
class DocumentManager:
docs: list[OrgDoc]
def __init__(self, base_path: os.PathLike):
self.base_path = base_path
def __init__(self, basepath):
self.basepath = basepath
def load(self):
top = os.path.abspath(self.base_path)
top = os.path.abspath(self.basepath)
docs = []
for root, dirs, files in os.walk(top):
for name in files:
if all(map(lambda ext: not name.endswith(ext), EXTENSIONS)):
if ".org" not in name:
continue
path = os.path.join(root, name)

View File

@ -33,9 +33,6 @@ class Dialog(QDialog):
super(Dialog, self).__init__()
self.setWindowTitle("OrgEditor")
scrSize = self.screen().size()
self.resize(scrSize.width() / 1.5,
scrSize.height() / 1.5)
self.loader = None
self.manager = doc_manager.DocumentManager(DOCS_PATH)