Merge branch 'latest' of github.com:webnotes/erpnext into latest

This commit is contained in:
Rushabh Mehta
2012-02-20 12:06:55 +01:00
16 changed files with 316 additions and 127 deletions

View File

@@ -0,0 +1,6 @@
def execute():
"""
* Reload ToDo Item
"""
from webnotes.modules.module_manager import reload_doc
reload_doc('utilities', 'doctype', 'todo_item')

View File

@@ -3,6 +3,9 @@ import patches.jan_mar_2012.website.feed
import patches.jan_mar_2012.website.website
import patches.jan_mar_2012.website.cleanups
import patches.jan_mar_2012.website.domain_list
import patches.jan_mar_2012.website.file_data_rename
import patches.jan_mar_2012.website.analytics
def execute():
patches.jan_mar_2012.website.login.execute()
@@ -11,3 +14,4 @@ def execute():
patches.jan_mar_2012.website.cleanups.execute()
patches.jan_mar_2012.website.domain_list.execute()
patches.jan_mar_2012.website.file_data_rename.execute()
patches.jan_mar_2012.website.analytics.execute()