[Freeswitch-svn] [commit] r11099 - in freeswitch/trunk/src/mod: applications/mod_conference xml_int/mod_xml_rpc
FreeSWITCH SVN
brian at freeswitch.org
Thu Jan 8 09:36:32 PST 2009
Author: brian
Date: Thu Jan 8 11:36:32 2009
New Revision: 11099
Log:
update
Modified:
freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c
freeswitch/trunk/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c
Modified: freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c (original)
+++ freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c Thu Jan 8 11:36:32 2009
@@ -3895,7 +3895,7 @@
{
char *lbuf = NULL;
switch_status_t status = SWITCH_STATUS_SUCCESS;
- char *http = NULL;
+ char *http = NULL, *type = NULL;
int argc;
char *argv[25] = { 0 };
@@ -3905,11 +3905,14 @@
if (stream->param_event) {
http = switch_event_get_header(stream->param_event, "http-host");
+ type = switch_event_get_header(stream->param_event, "content-type");
}
if (http) {
/* Output must be to a web browser */
- stream->write_function(stream, "<pre>\n");
+ if (type && !strcasecmp(type, "text/html")) {
+ stream->write_function(stream, "<pre>\n");
+ }
}
if (!(lbuf = strdup(cmd))) {
Modified: freeswitch/trunk/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c
==============================================================================
--- freeswitch/trunk/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c (original)
+++ freeswitch/trunk/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c Thu Jan 8 11:36:32 2009
@@ -449,7 +449,7 @@
char *fs_user = NULL, *fs_domain = NULL;
char *path_info = NULL;
abyss_bool ret = TRUE;
- int html = 0, text = 0;
+ int html = 0, text = 0, xml = 0;
stream.data = r;
stream.write_function = http_stream_write;
@@ -467,6 +467,9 @@
} else if ((command = strstr(r->requestInfo.uri, "/txtapi/"))) {
command += 8;
text++;
+ } else if ((command = strstr(r->requestInfo.uri, "/xmlapi/"))) {
+ command += 8;
+ xml++;
} else {
return FALSE;
}
@@ -529,6 +532,8 @@
switch_event_add_header_string(stream.param_event, SWITCH_STACK_BOTTOM, "Content-type", "text/html");
else if (text)
switch_event_add_header_string(stream.param_event, SWITCH_STACK_BOTTOM, "Content-type", "text/plain");
+ else if (xml)
+ switch_event_add_header_string(stream.param_event, SWITCH_STACK_BOTTOM, "Content-type", "text/xml");
if (fs_user)
switch_event_add_header_string(stream.param_event, SWITCH_STACK_BOTTOM, "FreeSWITCH-User", fs_user);
if (fs_domain)
More information about the Freeswitch-svn
mailing list