removed mail files

This commit is contained in:
rods%netscape.com 1999-04-16 20:11:06 +00:00
parent 25c532c154
commit 7dda0122d5
5 changed files with 0 additions and 231 deletions

View File

@ -97,10 +97,6 @@ include <$(DEPTH)\config\rules.mak>
install:: $(DLL)
$(MAKE_INSTALL) $(DLL) $(DIST)\bin
$(MAKE_INSTALL) .\$(OBJDIR)\$(MODULE).lib $(DIST)\lib
$(MAKE_INSTALL) ..\xul\MailAppShell.html $(DIST)\bin\res\samples
$(MAKE_INSTALL) ..\xul\MailAppShellNoTB.html $(DIST)\bin\res\samples
$(MAKE_INSTALL) ..\xul\MailFrame.html $(DIST)\bin\res\samples
$(MAKE_INSTALL) ..\xul\MailToolbar.xml $(DIST)\bin\res\samples
$(MAKE_INSTALL) ..\xul\EditorAppShell.xul $(DIST)\bin\res\samples
$(MAKE_INSTALL) ..\xul\EditorCommands.js $(DIST)\bin\res\samples
$(MAKE_INSTALL) ..\xul\EditorInitPage.html $(DIST)\bin\res\samples

View File

@ -1,30 +0,0 @@
<html>
<head>
<title>Mozilla Browser</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#C0C0C0">
<style type="text/css">
/* This style sheet should be in a seperate file */
BODY,TD {
font-family: Sans-Serif;
background-color: #C0C0C0;
}
BODY,TD,INPUT {
font-size: 9pt;
}
BODY {
margin: 0px 0px 0px 0px;
}
</style>
<iframe src="MailToolbar.xml" name="browser.toolbar" width="100%" height="80" >
<iframe src="MailFrame.html" name="browser.webwindow" width="100%" height="500" >
<iframe src="status.html" name="browser.status" width="100%" height="34" >
</body>
</html>

View File

@ -1,28 +0,0 @@
<html>
<head>
<title>Mozilla Browser</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#C0C0C0">
<style type="text/css">
/* This style sheet should be in a seperate file */
BODY,TD {
font-family: Sans-Serif;
background-color: #C0C0C0;
}
BODY,TD,INPUT {
font-size: 9pt;
}
BODY {
margin: 0px 0px 0px 0px;
}
</style>
<iframe src="MailToolbar.xml" name="mail.toolbar" width="100%" height="80" >
<iframe src="MailFrame.html" name="mail.webwindow" width="100%" height="500" >
</body>
</html>

View File

@ -1,77 +0,0 @@
<html>
<head>
<style type="text/css">
/* This style sheet should be in a seperate file */
FIELDSET {
background-color: rgb(192, 192, 192);
border: 2px groove rgb(192, 192, 192);
display: inline;
margin-left: 10px;
padding: 2px;
}
LEGEND {
background-color:rgb(192, 192, 192);
border: none ;
padding: 2px;
}
BODY,TD {
font-family: Sans-Serif;
background-color: #C0C0C0;
}
LABEL {
background-color: #C0C0C0;
margin: 0px 0px 0px 0px;
padding-left: 0px;
padding-right: 0px;
}
BODY,TD,INPUT {
font-size: 9pt;
}
BODY {
margin: 0px 0px 0px 0px;
}
</style>
</head>
<body>
<center>
<p><form ENCTYPE="text/plain" onSubmit="return submitForms()"></center>
<TABLE bgcolor="#C0C0C0">
<TR>
<TD>
<fieldset width="100%" height="100%" >
<legend align=left>&nbsp;Info&nbsp;</legend>
<TABLE width="100%" height="100%">
<TR>
<TD>Address:</TD>
<TD width="100%"><input type="text" name="addrTo" ></TD>
</TR>
<TR>
<TD>Subject:</TD>
<TD><input type="text" name="subject" id="subject"></TD>
</TR>
</TABLE>
</fieldset>
</TD>
</TR>
<TR>
<TD>
<fieldset width="100%" height="100%" >
<legend align=left>&nbsp;Message&nbsp;</legend>
<TEXTAREA cols=40 rows=20 name="mailbody"></TEXTAREA>
</fieldset>
</TD>
</TR></TABLE>
</form>
</center>
</body>
</html>

View File

@ -1,92 +0,0 @@
<?xml version="1.0"?>
<?xml-stylesheet href="xul.css" type="text/css"?>
<!DOCTYPE window>
<xul:window xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns:xul ="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<html:script language="JavaScript">
function StartUp()
{
appCore = XPAppCoresManager.Find("MailAppCore");
if (appCore==null) {
appCore = new MailCore();
if (appCore != null) {
dump("MailAppCore was created!\n");
appCore.Init("MailAppCore");
appCore.MailCompleteCallback("MailSent();");
appCore.SetWindow(window);
}
}
}
function SendMailMessage()
{
dump("SendMailMessage!\n");
var appCore = XPAppCoresManager.Find("MailAppCore");
if (appCore != null) {
dump("Mail was sent!\n");
appCore.SendMail(window.parent.frames[1].document.forms[0].elements[1].value,
window.parent.frames[1].document.forms[0].elements[2].value,
window.parent.frames[1].document.forms[0].elements[4].value);
}
}
function MailSent()
{
// Clear Them
window.parent.frames[1].document.forms[0].elements[1].value = "";
window.parent.frames[1].document.forms[0].elements[2].value = "";
window.parent.frames[1].document.forms[0].elements[4].value = "";
}
</html:script>
<xul:commands>
<xul:command name="nsCmd:StartUp" onCommand="StartUp();"/>
<xul:command name="nsCmd:MailSendMsg" onCommand="SendMailMessage();"/>
</xul:commands>
<xul:toolbox>
<xul:toolbar>
<html:button cmd="nsCmd:MailSendMsg" style="background-color:rgb(192,192,192);">
<html:img src="resource:/res/toolbar/Mail_SendMsg.gif"/><html:br/>Send
</html:button>
<html:button cmd="nsCmd:MailGetMsg" style="background-color:rgb(192,192,192);">
<html:img src="resource:/res/toolbar/Mail_GetMsg.gif"/><html:br/>GetMsg
</html:button>
<html:button cmd="nsCmd:MailNewMsg" style="background-color:rgb(192,192,192);">
<html:img src="resource:/res/toolbar/Mail_NewMsg.gif"/><html:br/>New Msg
</html:button>
<html:button cmd="nsCmd:MailReply" style="background-color:rgb(192,192,192);">
<html:img src="resource:/res/toolbar/Mail_Reply.gif"/><html:br/>Reply
</html:button>
<html:button cmd="nsCmd:MailForward" style="background-color:rgb(192,192,192);">
<html:img src="resource:/res/toolbar/Mail_Forward.gif"/><html:br/>Forward
</html:button>
<html:button cmd="nsCmd:BrowserPrint" style="background-color:rgb(192,192,192);">
<html:img src="resource:/res/toolbar/TB_Print.gif"/><html:br/>Print
</html:button>
<html:a style="position:relative; direction:rtl; right:3; top: 2px;" href="http://www.netscape.com">
<html:img alt="Throbber!" border="0" src="resource:/res/throbber/anims00.gif"/>
</html:a>
</xul:toolbar>
<xul:toolbar>
<html:form>
<html:select style="width:200px;">
<html:option>INBOX</html:option>
</html:select>
</html:form>
</xul:toolbox>
</xul:toolbox>
</xul:window>