97 lines
2.7 KiB
JavaScript
97 lines
2.7 KiB
JavaScript
// -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
// The contents of this file are subject to the Netscape Public
|
|
// License Version 1.1 (the "License"); you may not use this file
|
|
// except in compliance with the License. You may obtain a copy of
|
|
// the License at http://www.mozilla.org/NPL/
|
|
//
|
|
// Software distributed under the License is distributed on an "AS
|
|
// IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
// implied. See the License for the specific language governing
|
|
// rights and limitations under the License.
|
|
//
|
|
// The Original Code is mozilla.org code.
|
|
//
|
|
// The Initial Developer of the Original Code is Netscape
|
|
// Communications Corporation. Portions created by Netscape are
|
|
// Copyright (C) 1998 Netscape Communications Corporation. All
|
|
// Rights Reserved.
|
|
//
|
|
// Contributor(s):
|
|
|
|
// Style note 3/3:
|
|
// internal objects & functions are in under_score form.
|
|
// public functions are in interCaps.
|
|
|
|
// Remove this -- but called in winpref.js :
|
|
// platform.windows = true;
|
|
function plat() {
|
|
this.windows=false;
|
|
this.mac=false;
|
|
this.unix=false;
|
|
};
|
|
|
|
platform = new plat();
|
|
|
|
// --- Preference initialization functions ---
|
|
//
|
|
// Moved to native functions:
|
|
// pref -> pref_NativeDefaultPref
|
|
// defaultPref -> ""
|
|
// userPref -> pref_NativeUserPref
|
|
// lockPref -> pref_NativeLockPref
|
|
// unlockPref -> pref_NativeUnlockPref
|
|
// getPref -> pref_NativeGetPref
|
|
// config -> pref_NativeDefaultPref (?)
|
|
|
|
// stubs for compatibility
|
|
var default_pref = defaultPref;
|
|
var lock_pref = lockPref;
|
|
var unlock_pref = unlockPref;
|
|
var userPref = user_pref;
|
|
|
|
function mime_type(root, mimetype, extension, load_action, appname, appsig, filetype)
|
|
{
|
|
// changed for prefbert
|
|
pref(root + ".mimetype", mimetype);
|
|
pref(root + ".extension", extension);
|
|
pref(root + ".load_action", load_action);
|
|
pref(root + ".mac_appname", appname);
|
|
pref(root + ".mac_appsig", appsig);
|
|
pref(root + ".mac_filetype", filetype);
|
|
pref(root + ".description", "");
|
|
pref(root + ".latent_plug_in", false);
|
|
}
|
|
|
|
// LDAP
|
|
// Searches for "key=value" in the given string and returns value.
|
|
function getLDAPValue(str, key)
|
|
{
|
|
if (str == null || key == null)
|
|
return null;
|
|
|
|
var search_key = "\n" + key + "=";
|
|
|
|
var start_pos = str.indexOf(search_key);
|
|
if (start_pos == -1)
|
|
return null;
|
|
|
|
start_pos += search_key.length;
|
|
|
|
var end_pos = str.indexOf("\n", start_pos);
|
|
if (end_pos == -1)
|
|
end_pos = str.length;
|
|
|
|
return str.substring(start_pos, end_pos);
|
|
}
|
|
|
|
function begin_mime_def()
|
|
{
|
|
}
|
|
|
|
function end_mime_def()
|
|
{
|
|
var now = new Date();
|
|
pref("mime.types.all_defined", now.toString());
|
|
}
|