home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-mac-0.9.sea.hqx / mozilla-mac-0.9 / Chrome / messenger.jar / content / messenger / aw-accname.js < prev    next >
Text File  |  2001-05-05  |  2KB  |  54 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public
  4.  * License Version 1.1 (the "License"); you may not use this file
  5.  * except in compliance with the License. You may obtain a copy of
  6.  * the License at http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the License is distributed on an "AS
  9.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.  * implied. See the License for the specific language governing
  11.  * rights and limitations under the License.
  12.  *
  13.  * The Original Code is mozilla.org code.
  14.  *
  15.  * The Initial Developer of the Original Code is Netscape
  16.  * Communications Corporation.  Portions created by Netscape are
  17.  * Copyright (C) 1998 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  * Alec Flett <alecf@netscape.com>
  22.  * Seth Spitzer <sspitzer@netscape.com>
  23.  */
  24.  
  25. var gPrefsBundle;
  26.  
  27. function validate() {
  28.   var accountname = document.getElementById("prettyName").value;
  29.  
  30.   if (!accountname || accountname =="") {
  31.       var alertText = gPrefsBundle.getString("enterAccountName");
  32.       window.alert(alertText);
  33.       return false;
  34.   }
  35.   return true;
  36. }
  37.  
  38. function onInit() {
  39.     gPrefsBundle = document.getElementById("bundle_prefs");
  40.     var accountNameInput = document.getElementById("prettyName");
  41.     if (accountNameInput.value=="") {
  42.         var pageData = parent.GetPageData();
  43.         var type = parent.getCurrentServerType(pageData);
  44.         var protocolinfo = Components.classes["@mozilla.org/messenger/protocol/info;1?type=" + type].getService(Components.interfaces.nsIMsgProtocolInfo);
  45.         var accountName;
  46.         if (type == "nntp") {
  47.             accountName = pageData.newsserver.hostname.value;
  48.         } else {
  49.             accountName = pageData.identity.email.value;
  50.         }
  51.         accountNameInput.value = accountName;
  52.     }
  53. }
  54.