eric6/Helpviewer/Sync/SyncGlobals.py

changeset 7220
5cf645f6daab
parent 7218
eaf2cf171f3a
parent 7211
1c97f3142fa8
child 7221
0485ccdf7877
equal deleted inserted replaced
7218:eaf2cf171f3a 7220:5cf645f6daab
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2012 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module implementing some global definitions.
8 """
9
10 # Page IDs for the sync wizard
11 PageData = 0
12 PageEncryption = 1
13 PageType = 2
14 PageFTPSettings = 3
15 PageDirectorySettings = 4
16 PageCheck = 5
17
18 # Sync types
19 SyncTypeNone = -1
20 SyncTypeFtp = 0
21 SyncTypeDirectory = 1
22
23 #
24 # eflag: noqa = M702

eric ide

mercurial