home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / defaults / pref / editor.js < prev    next >
Text File  |  2001-08-17  |  2KB  |  62 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  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-2000 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s): 
  21.  */
  22.  
  23. pref("editor.author",                       "");
  24.  
  25. pref("editor.use_custom_colors",            false);
  26. pref("editor.text_color",                   "#000000");
  27. pref("editor.link_color",                   "#0000FF");
  28. pref("editor.active_link_color",            "#000088");
  29. pref("editor.followed_link_color",          "#FF0000");
  30. pref("editor.background_color",             "#FFFFFF");
  31. pref("editor.use_background_image",         false);
  32. localDefPref("editor.background_image",     "");
  33. pref("editor.use_custom_default_colors", 1);
  34.  
  35. localDefPref("editor.hrule.height",         2);
  36. localDefPref("editor.hrule.width",          100);
  37. pref("editor.hrule.width_percent",          true);
  38. pref("editor.hrule.shading",                true);
  39. pref("editor.hrule.align",                  1); // center
  40.  
  41. pref("editor.table.maintain_structure", true);
  42. pref("editor.table.delete_key", 0);
  43.  
  44. pref("editor.prettyprint", true);
  45.  
  46. pref("editor.htmlWrapColumn", 72);
  47.  
  48. pref("editor.throbber.url","chrome://editor-region/locale/region.properties");
  49.  
  50. pref("editor.auto_save",                    false);
  51. pref("editor.auto_save_delay",              10);    // minutes
  52. pref("editor.use_html_editor",              0);
  53. pref("editor.html_editor",                  "");
  54. pref("editor.use_image_editor",             0);
  55. pref("editor.image_editor",                 "");
  56.  
  57. pref("editor.singleLine.pasteNewlines",     1);
  58.  
  59. pref("editor.history.url_maximum", 10);
  60.  
  61. pref("editor.quotesPreformatted",            true);
  62.