* [feat] Removed help from toolbar.js * [feat] Removed help from global search * [feat] redirected search in help to docs website [] Url needs to be configurable from hooks * [Feat] Removed search functions for help * [fix] Help links not redirecting * [feat] Modified "Help" menu on desk toolbar * [feat] Removed docs search from desk toolbar * Removed Search from toolbar.js * Removed /search_docs from website * Removed help from migrate * Deprecated help from command utils * Removed help.py * Removed help setup from travis.yml * [fix] Fixed formatting issues * [fix] Deleted commented code from toolbar.js * [fix] Minor link fix * [Fix] Fixed a small typo * Removed docs_app dependency from pathces * [fix] Removed commented code * [fix] Typo in function name * fix: remove commented code * [fix] Changed 'Deprecated' message to 'Removed' Removed will be the correct term instead of deprecated
65 lines
1.8 KiB
Python
65 lines
1.8 KiB
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# MIT License. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
import frappe.translate
|
|
import frappe.modules.patch_handler
|
|
import frappe.model.sync
|
|
from frappe.utils.fixtures import sync_fixtures
|
|
from frappe.cache_manager import clear_global_cache
|
|
from frappe.desk.notifications import clear_notifications
|
|
from frappe.website import render, router
|
|
from frappe.desk.doctype.desktop_icon.desktop_icon import sync_desktop_icons
|
|
from frappe.core.doctype.language.language import sync_languages
|
|
from frappe.modules.utils import sync_customizations
|
|
|
|
def migrate(verbose=True, rebuild_website=False):
|
|
'''Migrate all apps to the latest version, will:
|
|
- run before migrate hooks
|
|
- run patches
|
|
- sync doctypes (schema)
|
|
- sync fixtures
|
|
- sync desktop icons
|
|
- sync web pages (from /www)
|
|
- sync web pages (from /www)
|
|
- run after migrate hooks
|
|
'''
|
|
frappe.flags.in_migrate = True
|
|
clear_global_cache()
|
|
|
|
#run before_migrate hooks
|
|
for app in frappe.get_installed_apps():
|
|
for fn in frappe.get_hooks('before_migrate', app_name=app):
|
|
frappe.get_attr(fn)()
|
|
|
|
# run patches
|
|
frappe.modules.patch_handler.run_all()
|
|
# sync
|
|
frappe.model.sync.sync_all(verbose=verbose)
|
|
frappe.translate.clear_cache()
|
|
sync_fixtures()
|
|
sync_customizations()
|
|
sync_desktop_icons()
|
|
sync_languages()
|
|
|
|
frappe.get_doc('Portal Settings', 'Portal Settings').sync_menu()
|
|
|
|
# syncs statics
|
|
render.clear_cache()
|
|
|
|
# add static pages to global search
|
|
router.sync_global_search()
|
|
|
|
#run after_migrate hooks
|
|
for app in frappe.get_installed_apps():
|
|
for fn in frappe.get_hooks('after_migrate', app_name=app):
|
|
frappe.get_attr(fn)()
|
|
|
|
frappe.db.commit()
|
|
|
|
clear_notifications()
|
|
|
|
frappe.publish_realtime("version-update")
|
|
frappe.flags.in_migrate = False
|