diff options
Diffstat (limited to 'client/macro.cc')
-rw-r--r-- | client/macro.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/macro.cc b/client/macro.cc index 08a956a..d06e4c0 100644 --- a/client/macro.cc +++ b/client/macro.cc @@ -64,6 +64,7 @@ void create_macro(QString name) QDomDocument xml_doc; if (!xml_doc.setContent(ba)) { printf("ERROR: Invalid XML recieved!\n"); + fwrite(ba.data(), ba.size(), 1, stdout); } // Initiate the macro builder with the xml document @@ -99,7 +100,7 @@ static QDomDocument xml_request(QString name) printf("macro: %s, cpr: %s, user: %s\n", name.toStdString().c_str(), cpr.toStdString().c_str(), user.toStdString().c_str()); xml_array.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"); xml_array.append("<pracro version=\"1.0\" cpr=\"" + cpr + "\" user=\"" + user + "\">\n"); - xml_array.append(" <request macro=\"" + name + "\"/>\n"); + xml_array.append(" <request course=\"example2\" macro=\"" + name + "\"/>\n"); xml_array.append("</pracro>"); // Print to stdout for debug purposes |