update in cms2 patch: delete html files

This commit is contained in:
Anand Doshi 2012-07-12 22:06:27 +05:30
parent 3d53e86755
commit af1f437fad
2 changed files with 11 additions and 1 deletions

View File

@ -42,6 +42,16 @@ def cleanup():
webnotes.model.delete_doc('Page', 'blog')
webnotes.model.delete_doc('Page', 'about')
import os
import conf
# delete other html files
exception_list = ['app.html', 'unsupported.html', 'blank.html']
conf_dir = os.path.dirname(os.path.abspath(conf.__file__))
public_path = os.path.join(conf_dir, 'public')
for f in os.listdir(public_path):
if f.endswith('.html') and f not in exception_list:
os.remove(os.path.join(public_path, f))
def save_pages():
"""save all web pages, blogs to create content"""
query_map = {

View File

@ -127,7 +127,7 @@ NameVirtualHost *:99
<Directory {path to erpnext's folder}/public/>
# directory specific options
Options +Indexes +FollowSymLinks +ExecCGI
Options -Indexes +FollowSymLinks +ExecCGI
# directory's index file
DirectoryIndex web.py