{{{#!python + "register": command_register.cmd_register, + "search": command_search.cmd_search, + "interface": command_interface.cmd_interface, + "subscriptions/add": command_subscription.cmd_subscribe, + "subscriptions/del": command_subscription.cmd_unsubscribe, + "subscriptions": command_subscription.cmd_subscriptions, "feed": command_show.cmd_feed, + "today": command_show.cmd_today, + "show": command_show.cmd_show, + "post": command_post.cmd_post, + "comment": command_post.cmd_comment, "recommend": command_post.cmd_recommend, + "on": command_onoff.cmd_on, + "off": command_onoff.cmd_off, + "delete": command_delete.cmd_delete, + "pm": command_pm.cmd_pm, + "userlist": command_userlist.cmd_userlist, + "vcard": command_vcard.cmd_vcard, + "clubs": command_clubs.cmd_clubs, + "tags": command_clubs.cmd_tags, "passlogin": command_login.cmd_passlogin, "blacklist": command_bl.cmd_blacklist, "stat": command_stat.cmd_stat, + "update": command_update.cmd_update, + "userinfo": command_userinfo.cmd_userinfo, }}} ===== Objects and actions ===== {{{ /messages/ POST -- create post (replaces: post) GET -- list/search (replaces: show, today) /messages/ PUT -- update (tags/clubs only, replaces: update) GET -- get (replaces: show -m) DELETE -- delete (replaces: delete) /comments// POST -- create comment (replaces: comment) GET -- get comments for message (replaces: show -rm) /comments// GET -- get comment (replaces: nothing, maybe show -rm) DELETE -- delete comment (replaces: delete) /subscriptions/ GET -- get list (replaces: subscriptions) /subscriptions// GET -- get list /subscriptions// POST -- create GET -- get DELETE -- delete /users/ GET -- list/query (replaces: userlist, whoami) /users/ POST -- register (replaces: register) PUT -- change settings (replaces: interface, settings, vcard, on, off) GET -- get info (replaces: userinfo) /search/ GET -- search for messages and comments /pm/ POST -- send a private message to // GET -- get top of clubs/tags // GET -- get info about this club/tag (currently only message count) }}}