rename havesex and QHaveSex to havedate and QHaveDate

This commit is contained in:
Romain Bignon 2012-03-03 22:56:51 +01:00
commit 33a9bf71a8
26 changed files with 41 additions and 41 deletions

View file

@ -1,8 +1,8 @@
[Desktop Entry] [Desktop Entry]
Name=QHavesex Name=QHaveDate
Comment=Optimize your probabilities to have sex on dating websites Comment=Optimize your probabilities to have sex on dating websites
Exec=qhavesex Exec=qhavedate
Icon=qhavesex Icon=qhavedate
Terminal=false Terminal=false
Type=Application Type=Application
StartupNotify=true StartupNotify=true

View file

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

Before After
Before After

View file

@ -1,11 +1,11 @@
.TH HAVESEX 1 "05 February 2012" "havesex 0\&.a" .TH HAVEDATE 1 "03 March 2012" "havedate 0\&.b"
.SH NAME .SH NAME
havesex havedate
.SH SYNOPSIS .SH SYNOPSIS
.B havesex .B havedate
[\-dqv] [\-b \fIbackends\fR] [\-cnfs] [\fIcommand\fR [\fIarguments\fR..]] [\-dqv] [\-b \fIbackends\fR] [\-cnfs] [\fIcommand\fR [\fIarguments\fR..]]
.br .br
.B havesex .B havedate
[\-\-help] [\-\-version] [\-\-help] [\-\-version]
.SH DESCRIPTION .SH DESCRIPTION
@ -14,8 +14,8 @@ havesex
Console application allowing to interact with various dating websites and to optimize seduction algorithmically. Console application allowing to interact with various dating websites and to optimize seduction algorithmically.
.SS Supported websites: .SS Supported websites:
* aum (“Adopte un mec” french dating website) * aum ("Adopte un Mec" French dating website)
.SH HAVESEX COMMANDS .SH HAVEDATE COMMANDS
.TP .TP
\fBoptim\fR [list | start | edit | stop] \fIBACKEND\fR [\fIOPTIM\fR1 [\fIOPTIM\fR2 ...]] \fBoptim\fR [list | start | edit | stop] \fIBACKEND\fR [\fIOPTIM\fR1 [\fIOPTIM\fR2 ...]]
.br .br
@ -219,7 +219,7 @@ do not display item keys
file to export result file to export result
.SH COPYRIGHT .SH COPYRIGHT
Copyright(C) 2010-2011 Romain Bignon Copyright(C) 2010-2012 Romain Bignon
.LP .LP
For full COPYRIGHT see COPYING file with weboob package. For full COPYRIGHT see COPYING file with weboob package.
.LP .LP
@ -228,4 +228,4 @@ For full COPYRIGHT see COPYING file with weboob package.
"~/.weboob/backends" "~/.weboob/backends"
.SH SEE ALSO .SH SEE ALSO
Home page: http://weboob.org/Havesex Home page: http://weboob.org/applications/havedate

View file

@ -1,11 +1,11 @@
.TH QHAVESEX 1 "05 February 2012" "qhavesex 0\&.a" .TH QHAVEDATE 1 "03 March 2012" "qhavedate 0\&.b"
.SH NAME .SH NAME
qhavesex qhavedate
.SH SYNOPSIS .SH SYNOPSIS
.B qhavesex .B qhavedate
[\-h] [\-dqv] [\-b \fIbackends\fR] ... [\-h] [\-dqv] [\-b \fIbackends\fR] ...
.br .br
.B qhavesex .B qhavedate
[\-\-help] [\-\-version] [\-\-help] [\-\-version]
.SH DESCRIPTION .SH DESCRIPTION
@ -14,7 +14,7 @@ qhavesex
Qt application allowing to interact with various dating websites. Qt application allowing to interact with various dating websites.
.SS Supported websites: .SS Supported websites:
* aum (“Adopte un mec” french dating website) * aum ("Adopte un Mec" French dating website)
.SH OPTIONS .SH OPTIONS
.TP .TP
\fB\-\-version\fR \fB\-\-version\fR
@ -44,7 +44,7 @@ file to save logs
save every response save every response
.SH COPYRIGHT .SH COPYRIGHT
Copyright(C) 2010-2011 Romain Bignon Copyright(C) 2010-2012 Romain Bignon
.LP .LP
For full COPYRIGHT see COPYING file with weboob package. For full COPYRIGHT see COPYING file with weboob package.
.LP .LP
@ -53,4 +53,4 @@ For full COPYRIGHT see COPYING file with weboob package.
"~/.weboob/backends" "~/.weboob/backends"
.SH SEE ALSO .SH SEE ALSO
Home page: http://weboob.org/Qhavesex Home page: http://weboob.org/applications/qhavedate

View file

@ -20,8 +20,8 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>. # along with weboob. If not, see <http://www.gnu.org/licenses/>.
from weboob.applications.qhavesex import QHaveSex from weboob.applications.havedate import HaveDate
if __name__ == '__main__': if __name__ == '__main__':
QHaveSex.run() HaveDate.run()

View file

@ -20,8 +20,8 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>. # along with weboob. If not, see <http://www.gnu.org/licenses/>.
from weboob.applications.havesex import HaveSex from weboob.applications.qhavedate import QHaveDate
if __name__ == '__main__': if __name__ == '__main__':
HaveSex.run() QHaveDate.run()

View file

@ -92,7 +92,7 @@ def build_qt():
extraMakeFlag = [] extraMakeFlag = []
subprocess.check_call(['make']+extraMakeFlag+['-C','weboob/applications/qboobmsg/ui'], env=env ) subprocess.check_call(['make']+extraMakeFlag+['-C','weboob/applications/qboobmsg/ui'], env=env )
subprocess.check_call(['make']+extraMakeFlag+['-C','weboob/applications/qhavesex/ui'], env=env ) subprocess.check_call(['make']+extraMakeFlag+['-C','weboob/applications/qhavedate/ui'], env=env )
if sys.platform != 'win32': if sys.platform != 'win32':
subprocess.check_call(['make']+extraMakeFlag+['-C','weboob/applications/qvideoob/ui'], env=env ) subprocess.check_call(['make']+extraMakeFlag+['-C','weboob/applications/qvideoob/ui'], env=env )
subprocess.check_call(['make']+extraMakeFlag+['-C','weboob/applications/qwebcontentedit/ui'], env=env ) subprocess.check_call(['make']+extraMakeFlag+['-C','weboob/applications/qwebcontentedit/ui'], env=env )
@ -146,7 +146,7 @@ scripts = set(os.listdir('scripts'))
packages = set(find_packages()) packages = set(find_packages())
hildon_scripts = set(('masstransit',)) hildon_scripts = set(('masstransit',))
qt_scripts = set(('qboobmsg', 'qhavesex', 'qvideoob', 'weboob-config-qt', 'qwebcontentedit', 'qflatboob')) qt_scripts = set(('qboobmsg', 'qhavedate', 'qvideoob', 'weboob-config-qt', 'qwebcontentedit', 'qflatboob'))
if not options.hildon: if not options.hildon:
scripts = scripts - hildon_scripts scripts = scripts - hildon_scripts
@ -161,8 +161,8 @@ hildon_packages = set((
qt_packages = set(( qt_packages = set((
'weboob.applications.qboobmsg', 'weboob.applications.qboobmsg',
'weboob.applications.qboobmsg.ui', 'weboob.applications.qboobmsg.ui',
'weboob.applications.qhavesex', 'weboob.applications.qhavedate',
'weboob.applications.qhavesex.ui', 'weboob.applications.qhavedate.ui',
'weboob.applications.qvideoob', 'weboob.applications.qvideoob',
'weboob.applications.qvideoob.ui', 'weboob.applications.qvideoob.ui',
'weboob.applications.qweboobcfg', 'weboob.applications.qweboobcfg',

View file

@ -18,6 +18,6 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>. # along with weboob. If not, see <http://www.gnu.org/licenses/>.
from .havesex import HaveSex from .havedate import HaveDate
__all__ = ['HaveSex'] __all__ = ['HaveDate']

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright(C) 2010-2011 Romain Bignon # Copyright(C) 2010-2012 Romain Bignon
# #
# This file is part of weboob. # This file is part of weboob.
# #
@ -27,7 +27,7 @@ from weboob.capabilities.dating import ICapDating, OptimizationNotFound
from weboob.capabilities.contact import Contact from weboob.capabilities.contact import Contact
__all__ = ['HaveSex'] __all__ = ['HaveDate']
class ProfileFormatter(IFormatter): class ProfileFormatter(IFormatter):
@ -70,10 +70,10 @@ class ProfileFormatter(IFormatter):
result += u'\t%s\n' % s result += u'\t%s\n' % s
return result return result
class HaveSex(ReplApplication): class HaveDate(ReplApplication):
APPNAME = 'havesex' APPNAME = 'havedate'
VERSION = '0.b' 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 ' \ DESCRIPTION = 'Console application allowing to interact with various dating websites ' \
'and to optimize seduction algorithmically.' 'and to optimize seduction algorithmically.'
STORAGE_FILENAME = 'dating.storage' STORAGE_FILENAME = 'dating.storage'

View file

@ -0,0 +1,3 @@
from .qhavedate import QHaveDate
__all__ = ['QHaveDate']

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright(C) 2010-2011 Romain Bignon # Copyright(C) 2010-2012 Romain Bignon
# #
# This file is part of weboob. # This file is part of weboob.
# #
@ -23,10 +23,10 @@ from weboob.tools.application.qt import QtApplication
from .main_window import MainWindow from .main_window import MainWindow
class QHaveSex(QtApplication): class QHaveDate(QtApplication):
APPNAME = 'qhavesex' APPNAME = 'qhavedate'
VERSION = '0.b' 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.' DESCRIPTION = 'Qt application allowing to interact with various dating websites.'
CAPS = ICapDating CAPS = ICapDating
STORAGE_FILENAME = 'dating.storage' STORAGE_FILENAME = 'dating.storage'

View file

@ -11,7 +11,7 @@
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>QHaveSex</string> <string>QHaveDate</string>
</property> </property>
<widget class="QWidget" name="centralwidget"> <widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout"> <layout class="QVBoxLayout" name="verticalLayout">

View file

@ -1,3 +0,0 @@
from .qhavesex import QHaveSex
__all__ = ['QHaveSex']