diff --git a/USAGE.md b/USAGE.md index 58899ad..d3f4760 100644 --- a/USAGE.md +++ b/USAGE.md @@ -6,13 +6,15 @@ You might want to talk to bot if you're feeling lonely ;-P The bot is one of the contacts every user has in its contact list. It offers you a simple way to interact with the server: -| **Command** | **Description** | -| ----------- | --------------- | -| `\prune` | Wipe all your date we are storing on our server| -| `\help` | Getting a simple help| -| `\sync` | Resync your contact list with WhatsApp \\ (Determine which contacts are using WhatsApp)| -| `\lastseen` | Get last online timestamp of your buddies \\ (send to Buddy)| -| `\fortune` | Get a quote| +| **Command** | **Description** | +| ------------ | --------------- | +| `\help` | show this message | +| `\prune` | clear your buddylist | +| `\sync` | sync your imported contacts with WhatsApp | +| `\lastseen` | request last online timestamp from buddy | +| `\leave` | permanently leave group chat | +| `\groups` | print all attended groups | +| `\getgroups` | get current groups from WA | All commands start with a **back**slash! diff --git a/constants.py.sample b/constants.py.sample deleted file mode 100644 index 9aa7f0e..0000000 --- a/constants.py.sample +++ /dev/null @@ -1,29 +0,0 @@ -__author__ = "Steffen Vogel" -__copyright__ = "Copyright 2013, Steffen Vogel" -__license__ = "GPLv3" -__maintainer__ = "Steffen Vogel" -__email__ = "post@steffenvogel.de" -__status__ = "Prototype" - -""" - This file is part of transWhat - - transWhat is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - any later version. - - transwhat is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with transWhat. If not, see . -""" - -BASE_PATH = "/opt/transwhat" - -TOKEN_FILE = BASE_PATH + "/logs/tokens" -MOTD_FILE = BASE_PATH + "/conf/motd" -REQUESTS_FILE = BASE_PATH + "/logs/requests"