Aller à la documentation de ce fichier.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 licenceEn="""
00012 scolasync version %s:
00013
00014 a program to manage file transfers between a computer and a collection
00015 of USB sticks.
00016
00017 Copyright (C) 2010 Georges Khaznadar <georgesk@ofset.org>
00018
00019 This program is free software: you can redistribute it and/or modify
00020 it under the terms of the GNU General Public License as published by
00021 the Free Software Foundation, either version 3 of the License, or
00022 (at your option) any later version.
00023
00024 This program is distributed in the hope that it will be useful,
00025 but WITHOUT ANY WARRANTY; without even the implied warranty of
00026 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00027 GNU General Public License for more details.
00028
00029 You should have received a copy of the GNU General Public License
00030 along with this program. If not, see <http://www.gnu.org/licenses/>.
00031 """
00032
00033 import platform
00034
00035 if platform.system()=="Linux":
00036 userShareDir="~/.scolasync"
00037 logFileName="~/.scolasync/scolasync.log"
00038 markFileName="~/.scolasync/marques.py"
00039 elif platform.system()=="Windows":
00040
00041 userShareDir="??"
00042 logFileName="??"
00043 markFileName="??"
00044
00045