]> code.citadel.org Git - citadel.git/blobdiff - webcit/graphics.c
cosmetic stuff
[citadel.git] / webcit / graphics.c
index 8ccd6b0e14ff28f398f59075155d5dd134477450..1949c24a5a22a4637ef3f42bdb97c832f740292b 100644 (file)
@@ -1,8 +1,21 @@
 /*
- * $Id$
- *
  * Handles HTTP upload of graphics files into the system.
- * \ingroup WebcitHttpServer
+ *
+ * Copyright (c) 1996-2010 by the citadel.org team
+ *
+ * This program is open source 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 (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  */
 
 #include "webcit.h"
@@ -34,30 +47,30 @@ void display_graphics_upload(char *description, char *filename, char *uplurl)
 
        FreeStrBuf(&Buf);
 
-       wprintf("<form enctype=\"multipart/form-data\" action=\"%s\" "
+       wc_printf("<form enctype=\"multipart/form-data\" action=\"%s\" "
                "method=\"post\" name=\"graphicsupload\">\n", uplurl);
 
-       wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
-       wprintf("<input type=\"hidden\" name=\"which_room\" value=\"");
+       wc_printf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
+       wc_printf("<input type=\"hidden\" name=\"which_room\" value=\"");
        urlescputs(bstr("which_room"));
-       wprintf("\">\n");
+       wc_printf("\">\n");
 
-       wprintf(_("You can upload an image directly from your computer"));
-       wprintf("<br /><br />\n");
+       wc_printf(_("You can upload an image directly from your computer"));
+       wc_printf("<br /><br />\n");
 
-       wprintf(_("Please select a file to upload:"));
-       wprintf("<input type=\"file\" name=\"filename\" size=\"35\">\n");
+       wc_printf(_("Please select a file to upload:"));
+       wc_printf("<input type=\"file\" name=\"filename\" size=\"35\">\n");
 
-       wprintf("<div class=\"uploadpic\"><img src=\"image?name=%s\"></div>\n", filename);
+       wc_printf("<div class=\"uploadpic\"><img src=\"image?name=%s\"></div>\n", filename);
 
-       wprintf("<div class=\"buttons\">");
-       wprintf("<input type=\"submit\" name=\"upload_button\" value=\"%s\">\n", _("Upload"));
-       wprintf("&nbsp;");
-       wprintf("<input type=\"reset\" value=\"%s\">\n", _("Reset form"));
-       wprintf("&nbsp;");
-       wprintf("<input type=\"submit\" name=\"cancel_button\" value=\"%s\">\n", _("Cancel"));
-       wprintf("</div>\n");
-       wprintf("</form>\n");
+       wc_printf("<div class=\"buttons\">");
+       wc_printf("<input type=\"submit\" name=\"upload_button\" value=\"%s\">\n", _("Upload"));
+       wc_printf("&nbsp;");
+       wc_printf("<input type=\"reset\" value=\"%s\">\n", _("Reset form"));
+       wc_printf("&nbsp;");
+       wc_printf("<input type=\"submit\" name=\"cancel_button\" value=\"%s\">\n", _("Cancel"));
+       wc_printf("</div>\n");
+       wc_printf("</form>\n");
 
        do_template("endbox", NULL);