This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
ncsa-mosaic/src/whine.c

267 lines
9.6 KiB
C

/****************************************************************************
* NCSA Mosaic for the X Window System *
* Software Development Group *
* National Center for Supercomputing Applications *
* University of Illinois at Urbana-Champaign *
* 605 E. Springfield, Champaign IL 61820 *
* mosaic@ncsa.uiuc.edu *
* *
* Copyright (C) 1993, Board of Trustees of the University of Illinois *
* *
* NCSA Mosaic software, both binary and source (hereafter, Software) is *
* copyrighted by The Board of Trustees of the University of Illinois *
* (UI), and ownership remains with the UI. *
* *
* The UI grants you (hereafter, Licensee) a license to use the Software *
* for academic, research and internal business purposes only, without a *
* fee. Licensee may distribute the binary and source code (if released) *
* to third parties provided that the copyright notice and this statement *
* appears on all copies and that no charge is associated with such *
* copies. *
* *
* Licensee may make derivative works. However, if Licensee distributes *
* any derivative work based on or derived from the Software, then *
* Licensee will (1) notify NCSA regarding its distribution of the *
* derivative work, and (2) clearly notify users that such derivative *
* work is a modified version and not the original NCSA Mosaic *
* distributed by the UI. *
* *
* Any Licensee wishing to make commercial use of the Software should *
* contact the UI, c/o NCSA, to negotiate an appropriate license for such *
* commercial use. Commercial use includes (1) integration of all or *
* part of the source code into a product for sale or license by or on *
* behalf of Licensee to third parties, or (2) distribution of the binary *
* code or source code to third parties that need it to utilize a *
* commercial product sold or licensed by or on behalf of Licensee. *
* *
* UI MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THIS SOFTWARE FOR *
* ANY PURPOSE. IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED *
* WARRANTY. THE UI SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY THE *
* USERS OF THIS SOFTWARE. *
* *
* By using or copying this Software, Licensee agrees to abide by the *
* copyright law and all other applicable laws of the U.S. including, but *
* not limited to, export control laws, and the terms of this license. *
* UI shall have the right to terminate this license immediately by *
* written notice upon Licensee's breach of, or non-compliance with, any *
* of its terms. Licensee may be held legally responsible for any *
* copyright infringement that is caused or encouraged by Licensee's *
* failure to abide by the terms of this license. *
* *
* Comments and questions are welcome and can be sent to *
* mosaic-x@ncsa.uiuc.edu. *
****************************************************************************/
/* Support for whining to Mosaic authors. */
#include "mosaic.h"
static char *yap_msg =
"Type your message in the editing area below and then press\n\
the Send button at the bottom of the window. Your message\n\
will be mailed to NCSA Mosaic technical support.\n\n\
Thanks in advance for your comments and feedback.";
/* ----------------------- mo_post_whine_window ------------------------ */
static XmxCallback (whine_win_cb)
{
mo_window *win = mo_fetch_window_by_id (XmxExtractUniqid ((int)client_data));
char *msg, subj[1024];
switch (XmxExtractToken ((int)client_data))
{
case 0:
XtUnmanageChild (win->whine_win);
msg = XmxTextGetString (win->whine_text);
if (!msg)
return;
if (msg[0] == '\0')
return;
sprintf (subj, "User Feedback -- NCSA Mosaic %s on %s.",
MO_VERSION_STRING, MO_MACHINE_TYPE);
mo_send_mail_message (msg, MO_DEVELOPER_ADDRESS, subj, "text/plain",
NULL);
free (msg);
break;
case 1:
XtUnmanageChild (win->whine_win);
/* Do nothing. */
break;
case 2:
mo_open_another_window
(win,
mo_assemble_help_url ("help-on-whining.html"),
NULL, NULL);
break;
}
return;
}
mo_status mo_post_whine_win (mo_window *win)
{
if (!win->whine_win)
{
Widget dialog_frame;
Widget dialog_sep, buttons_form;
Widget whine_form, yap_label;
/* Create it for the first time. */
XmxSetUniqid (win->id);
win->whine_win = XmxMakeFormDialog
(win->base, "NCSA Mosaic: Mail Tech Support");
dialog_frame = XmxMakeFrame (win->whine_win, XmxShadowOut);
/* Constraints for base. */
XmxSetConstraints
(dialog_frame, XmATTACH_FORM, XmATTACH_FORM,
XmATTACH_FORM, XmATTACH_FORM, NULL, NULL, NULL, NULL);
/* Main form. */
whine_form = XmxMakeForm (dialog_frame);
yap_label = XmxMakeLabel (whine_form, yap_msg);
XmxSetArg (XmNscrolledWindowMarginWidth, 10);
XmxSetArg (XmNscrolledWindowMarginHeight, 10);
XmxSetArg (XmNcursorPositionVisible, True);
XmxSetArg (XmNeditable, True);
XmxSetArg (XmNeditMode, XmMULTI_LINE_EDIT);
XmxSetArg (XmNrows, 15);
XmxSetArg (XmNcolumns, 80);
/* XmxSetArg (XmNwordWrap, True); */
/* XmxSetArg (XmNscrollHorizontal, False); */
win->whine_text = XmxMakeScrolledText (whine_form);
dialog_sep = XmxMakeHorizontalSeparator (whine_form);
buttons_form = XmxMakeFormAndThreeButtonsSqueezed
(whine_form, whine_win_cb, "Send", "Dismiss", "Help...", 0, 1, 2);
/* Constraints for whine_form. */
XmxSetOffsets (yap_label, 8, 0, 0, 0);
XmxSetConstraints
(yap_label, XmATTACH_FORM, XmATTACH_NONE, XmATTACH_FORM, XmATTACH_FORM,
NULL, NULL, NULL, NULL);
XmxSetOffsets (XtParent (win->whine_text), 3, 0, 3, 3);
XmxSetConstraints
(XtParent (win->whine_text), XmATTACH_WIDGET, XmATTACH_WIDGET,
XmATTACH_FORM, XmATTACH_FORM,
yap_label, dialog_sep, NULL, NULL);
XmxSetArg (XmNtopOffset, 10);
XmxSetConstraints
(dialog_sep, XmATTACH_NONE, XmATTACH_WIDGET, XmATTACH_FORM,
XmATTACH_FORM,
NULL, buttons_form, NULL, NULL);
XmxSetConstraints
(buttons_form, XmATTACH_NONE, XmATTACH_FORM, XmATTACH_FORM, XmATTACH_FORM,
NULL, NULL, NULL, NULL);
XmxTextSetString (win->whine_text, "");
}
XmxManageRemanage (win->whine_win);
return mo_succeed;
}
/* ------------------------------------------------------------------------ */
static FILE *_fp = NULL;
FILE *mo_start_sending_mail_message (char *to, char *subj,
char *content_type, char *url)
{
char cmd[2048];
char *tmp;
if (!to)
return NULL;
#ifdef OLD
if (Rdata.mail_filter_command)
{
sprintf (cmd, "%s | %s -t", Rdata.mail_filter_command,
Rdata.sendmail_command);
}
else
{
sprintf (cmd, "%s -t", Rdata.sendmail_command);
}
#else
/* Try listing address on command line. */
for (tmp = to; *tmp; tmp++)
if (*tmp == ',')
*tmp = ' ';
if (Rdata.mail_filter_command && content_type &&
strcmp (content_type, "application/postscript"))
{
sprintf (cmd, "%s | %s %s", Rdata.mail_filter_command,
Rdata.sendmail_command, to);
}
else
{
sprintf (cmd, "%s %s", Rdata.sendmail_command, to);
}
#endif
if ((_fp = popen (cmd, "w")) == NULL)
return NULL;
#ifdef OLD
fprintf (_fp, "To: %s\n", to);
#endif
fprintf (_fp, "Subject: %s\n", subj);
fprintf (_fp, "Content-Type: %s\n", content_type);
fprintf (_fp, "Mime-Version: 1.0\n");
fprintf (_fp, "X-Mailer: NCSA Mosaic %s on %s\n",
MO_VERSION_STRING, MO_MACHINE_TYPE);
if (url)
fprintf (_fp, "X-URL: %s\n", url);
fprintf (_fp, "\n");
/* Stick in BASE tag as appropriate. */
if (url && content_type &&
strcmp (content_type, "text/x-html") == 0)
fprintf (_fp, "<base href=\"%s\">\n", url);
return _fp;
}
mo_status mo_finish_sending_mail_message (void)
{
if (_fp)
pclose (_fp);
_fp = NULL;
return mo_succeed;
}
/* ------------------------------------------------------------------------ */
mo_status mo_send_mail_message (char *text, char *to, char *subj,
char *content_type, char *url)
{
FILE *fp;
fp = mo_start_sending_mail_message (to, subj, content_type, url);
if (!fp)
return mo_fail;
fputs (text, fp);
mo_finish_sending_mail_message ();
return mo_succeed;
}