rename havesex and QHaveSex to havedate and QHaveDate
This commit is contained in:
parent
76040343bc
commit
33a9bf71a8
26 changed files with 41 additions and 41 deletions
|
|
@ -18,6 +18,6 @@
|
|||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from .havesex import HaveSex
|
||||
from .havedate import HaveDate
|
||||
|
||||
__all__ = ['HaveSex']
|
||||
__all__ = ['HaveDate']
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010-2011 Romain Bignon
|
||||
# Copyright(C) 2010-2012 Romain Bignon
|
||||
#
|
||||
# This file is part of weboob.
|
||||
#
|
||||
|
|
@ -27,7 +27,7 @@ from weboob.capabilities.dating import ICapDating, OptimizationNotFound
|
|||
from weboob.capabilities.contact import Contact
|
||||
|
||||
|
||||
__all__ = ['HaveSex']
|
||||
__all__ = ['HaveDate']
|
||||
|
||||
|
||||
class ProfileFormatter(IFormatter):
|
||||
|
|
@ -70,10 +70,10 @@ class ProfileFormatter(IFormatter):
|
|||
result += u'\t%s\n' % s
|
||||
return result
|
||||
|
||||
class HaveSex(ReplApplication):
|
||||
APPNAME = 'havesex'
|
||||
class HaveDate(ReplApplication):
|
||||
APPNAME = 'havedate'
|
||||
VERSION = '0.b'
|
||||
COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon'
|
||||
COPYRIGHT = 'Copyright(C) 2010-2012 Romain Bignon'
|
||||
DESCRIPTION = 'Console application allowing to interact with various dating websites ' \
|
||||
'and to optimize seduction algorithmically.'
|
||||
STORAGE_FILENAME = 'dating.storage'
|
||||
3
weboob/applications/qhavedate/__init__.py
Normal file
3
weboob/applications/qhavedate/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from .qhavedate import QHaveDate
|
||||
|
||||
__all__ = ['QHaveDate']
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010-2011 Romain Bignon
|
||||
# Copyright(C) 2010-2012 Romain Bignon
|
||||
#
|
||||
# This file is part of weboob.
|
||||
#
|
||||
|
|
@ -23,10 +23,10 @@ from weboob.tools.application.qt import QtApplication
|
|||
|
||||
from .main_window import MainWindow
|
||||
|
||||
class QHaveSex(QtApplication):
|
||||
APPNAME = 'qhavesex'
|
||||
class QHaveDate(QtApplication):
|
||||
APPNAME = 'qhavedate'
|
||||
VERSION = '0.b'
|
||||
COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon'
|
||||
COPYRIGHT = 'Copyright(C) 2010-2012 Romain Bignon'
|
||||
DESCRIPTION = 'Qt application allowing to interact with various dating websites.'
|
||||
CAPS = ICapDating
|
||||
STORAGE_FILENAME = 'dating.storage'
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>QHaveSex</string>
|
||||
<string>QHaveDate</string>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralwidget">
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
from .qhavesex import QHaveSex
|
||||
|
||||
__all__ = ['QHaveSex']
|
||||
Loading…
Add table
Add a link
Reference in a new issue