brotherton-erpnext/patches/december_2012/website_cache_refactor.py

27 lines
956 B
Python
Raw Normal View History

2013-11-20 07:29:58 +00:00
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
2012-12-06 11:17:27 +00:00
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 11:19:18 +00:00
m = markdown(page[1] or "").encode("utf8")
2012-12-06 11:17:27 +00:00
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 11:19:18 +00:00
m = markdown(page[1] or "").encode("utf8")
2012-12-06 11:17:27 +00:00
webnotes.conn.set_value("Blog", page[0], "content", m)
# delete website cache
webnotes.delete_doc("DocType", "Web Cache")
2013-02-15 12:57:12 +00:00
webnotes.conn.commit()
2012-12-06 11:17:27 +00:00
webnotes.conn.sql("""drop table if exists `tabWeb Cache`""")