brotherton-erpnext/patches/december_2012/website_cache_refactor.py

24 lines
825 B
Python
Raw Normal View History

2012-12-06 16:47:27 +05:30
from __future__ import unicode_literals
import webnotes
def execute():
# set page published = 1
webnotes.reload_doc("website", "doctype", "web_page")
webnotes.conn.sql("""update `tabWeb Page` set published=1;""")
# convert all page & blog markdowns to html
from markdown2 import markdown
for page in webnotes.conn.sql("""select name, main_section from `tabWeb Page`"""):
2012-12-06 16:49:18 +05:30
m = markdown(page[1] or "").encode("utf8")
2012-12-06 16:47:27 +05:30
webnotes.conn.set_value("Web Page", page[0], "main_section", m)
for page in webnotes.conn.sql("""select name, content from `tabBlog`"""):
2012-12-06 16:49:18 +05:30
m = markdown(page[1] or "").encode("utf8")
2012-12-06 16:47:27 +05:30
webnotes.conn.set_value("Blog", page[0], "content", m)
# delete website cache
webnotes.delete_doc("DocType", "Web Cache")
2013-02-15 18:27:12 +05:30
webnotes.conn.commit()
2012-12-06 16:47:27 +05:30
webnotes.conn.sql("""drop table if exists `tabWeb Cache`""")