X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit-ng%2Froom_functions.c;h=12818421cc04e8db6507950ad9b1d653c70e9ffe;hp=21fe56460fa5cc407b2ad3e4faff034335433dc7;hb=32fe7887a4fc68e8148f79c4b9ec35ffbb2442d7;hpb=b189e3c20289655e602210cb8e250bfd98d9dd47 diff --git a/webcit-ng/room_functions.c b/webcit-ng/room_functions.c index 21fe56460..12818421c 100644 --- a/webcit-ng/room_functions.c +++ b/webcit-ng/room_functions.c @@ -131,6 +131,7 @@ void object_in_room(struct http_transaction *h, struct ctdlsession *c) return; } +#if 0 if (!strncasecmp(buf, "threads", 5)) { // Client is requesting a threaded view (still kind of fuzzy here) threaded_view(h, c, &buf[5]); return; @@ -140,6 +141,7 @@ void object_in_room(struct http_transaction *h, struct ctdlsession *c) flat_view(h, c, &buf[5]); return; } +#endif if ( (c->room_default_view == VIEW_CALENDAR) // room types where objects are referenced by EUID || (c->room_default_view == VIEW_TASKS) @@ -166,6 +168,11 @@ void object_in_room(struct http_transaction *h, struct ctdlsession *c) syslog(LOG_DEBUG, "msgnum is %ld, method is %s", msgnum, h->method); + /* + * Does the client want us to render the message for them? + */ + // FIXME put that logic here + /* * Was the client actually requesting a specific component within the message? */