Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/setup/profiles.py
blob: 3282a62148f37a1d054b142231e4ee26eaf78200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
'''

'''

import os               # file path support
from lxml import etree  # using lxml for XML processing
from utils import utils # some XML utilities
from utils import strs  # string constants

# setup logging
import logging          # logging support
logging.basicConfig(level=logging.DEBUG)
log = logging.getLogger('setup.profiles')



def findAllProfiles():
    ''' '''
    pass

def getLastUsedProfile():
    ''' '''
    pass

def createNewProfile():
    ''' '''
    pass