def Restore_Option(): if trcheck == 'true': Check_Local_Install() extras.addDir('','[COLOR=lime]RESTORE LOCAL BUILD[/COLOR]','url','restore_local_CB','Brokentechie_Builds.png','','','Back Up Your Full System') extras.addDir('','[COLOR=dodgerblue]Restore Local guisettings file[/COLOR]','url','LocalGUIDialog','Brokentechie_Builds.png','','','Back Up Your Full System') if os.path.exists(os.path.join(USB,'addons.zip')): extras.addDir('','Restore Your Addons','addons','restore_zip','Brokentechie_Builds.png','','','Restore Your Addons') if os.path.exists(os.path.join(USB,'addon_data.zip')): extras.addDir('','Restore Your Addon UserData','addon_data','restore_zip','Brokentechie_Builds.png','','','Restore Your Addon UserData') if os.path.exists(os.path.join(USB,'guisettings.xml')): extras.addDir('','Restore Guisettings.xml',GUI,'restore_backup','Brokentechie_Builds.png','','','Restore Your guisettings.xml') if os.path.exists(os.path.join(USB,'favourites.xml')): extras.addDir('','Restore Favourites.xml',FAVS,'restore_backup','Brokentechie_Builds.png','','','Restore Your favourites.xml') if os.path.exists(os.path.join(USB,'sources.xml')): extras.addDir('','Restore Source.xml',SOURCE,'restore_backup','Brokentechie_Builds.png','','','Restore Your sources.xml') if os.path.exists(os.path.join(USB,'advancedsettings.xml')): extras.addDir('','Restore Advancedsettings.xml',ADVANCED,'restore_backup','Brokentechie_Builds.png','','','Restore Your advancedsettings.xml') if os.path.exists(os.path.join(USB,'keyboard.xml')): extras.addDir('','Restore Keyboard.xml',KEYMAPS,'restore_backup','Brokentechie_Builds.png','','','Restore Your keyboard.xml') if os.path.exists(os.path.join(USB,'RssFeeds.xml')): extras.addDir('','Restore RssFeeds.xml',RSS,'restore_backup','Brokentechie_Builds.png','','','Restore Your RssFeeds.xml')
def Backup_Option(): extras.addDir('','[COLOR=yellow]Full Backup[/COLOR]','url','community_backup','Brokentechie_Builds.png','','','Back Up Your Full System') extras.addDir('','Backup Just Your Addons','addons','restore_zip','Brokentechie_Builds.png','','','Back Up Your Addons') extras.addDir('','Backup Just Your Addon UserData','addon_data','restore_zip','Brokentechie_Builds.png','','','Back Up Your Addon Userdata') extras.addDir('','Backup Guisettings.xml',GUI,'restore_backup','Brokentechie_Builds.png','','','Back Up Your guisettings.xml') if os.path.exists(FAVS): extras.addDir('','Backup Favourites.xml',FAVS,'restore_backup','Brokentechie_Builds.png','','','Back Up Your favourites.xml') if os.path.exists(SOURCE): extras.addDir('','Backup Source.xml',SOURCE,'restore_backup','Brokentechie_Builds.png','','','Back Up Your sources.xml') if os.path.exists(ADVANCED): extras.addDir('','Backup Advancedsettings.xml',ADVANCED,'restore_backup','Brokentechie_Builds.png','','','Back Up Your advancedsettings.xml') if os.path.exists(KEYMAPS): extras.addDir('','Backup Keyboard.xml',KEYMAPS,'restore_backup','Brokentechie_Builds.png','','','Back Up Your keyboard.xml')