created md2html compiler module

for now it is watching md files and is synchronized with other modules
remains the whole compiling process to code
This commit is contained in:
Bachir Soussi Chiadmi
2017-05-30 09:57:28 +02:00
parent f73918e5b5
commit 01bd78e2e3
3 changed files with 53 additions and 3 deletions
+5 -2
View File
@@ -54,9 +54,10 @@ class Summary(QWidget):
json.dump(self.sum, fp, ensure_ascii=False, indent="\t")
# refresh list
self.list.addNewItem(item)
# reload content compiler
self.parent.core.contentcompiler.reload()
def recordNewList(self):
newdata = []
for i in range(0,self.list.count()):
# print(self.item(i).item['title'])
@@ -68,7 +69,8 @@ class Summary(QWidget):
with open(jsonfilepath, "w") as fp:
json.dump(newdata, fp, ensure_ascii=False, indent="\t")
# reload content compiler
self.parent.core.contentcompiler.reload()
class SummaryList(QListWidget):
def __init__(self, parent):
@@ -219,6 +221,7 @@ class MarkdownEditor(QWidget):
self.refreshViewer()
if not self.changed:
self.changed = True
# TODO: show in list that content needs to be saved
# i = self.tabs.currentIndex()
# self.tabs.setTabText(i, "* "+self.tabs.tabText(i))
+45
View File
@@ -0,0 +1,45 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from PyQt5.QtCore import QFileSystemWatcher
import json
class Compiler():
def __init__(self,parent):
self.parent = parent
self.initWatching()
self.compileContents()
def initWatching(self):
self.refreshPaths()
self.fs_watcher = QFileSystemWatcher(self.paths)
# self.fs_watcher.directoryChanged.connect(self.directory_changed)
self.fs_watcher.fileChanged.connect(self.onMdFileChanged)
def onMdFileChanged(self):
print("onMdFileChanged")
try:
self.compileContents()
except Exception as e:
print("Error compiling MD files", e)
pass
def refreshPaths(self):
jsonfilepath = os.path.join(self.parent.cwd,'.config/summary.json')
sum_json = open(jsonfilepath).read()
self.sum = json.loads(sum_json)
self.paths = [os.path.join(self.parent.cwd,'contents')]
for item in self.sum:
self.paths.append(os.path.join(self.parent.cwd,'contents',item['file']))
def reload(self):
self.fs_watcher.removePaths(self.paths)
self.refreshPaths()
self.fs_watcher.addPaths(self.paths)
self.compileContents()
def compileContents(self):
print('Compiling md')