home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 December / PCWorld_2006-12_cd.bin / komunikace / netscape / nsb-install-8-1-2.exe / defaults / pref / composer.js < prev    next >
Text File  |  2006-09-12  |  6KB  |  131 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998-2002
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  * Benjamin Smedberg <bsmedberg@covad.net>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /**
  40.  * Default preferences for seamonkey composer. This file
  41.  * was copied from mozilla/modules/libpref/src/init/editor.js
  42.  *
  43.  * If you're looking for the default prefs of standalone
  44.  * composer, see mozilla/composer/app/profile/all.js
  45.  */
  46.  
  47. pref("editor.author",                       "");
  48.  
  49. pref("editor.text_color",                   "#000000");
  50. pref("editor.link_color",                   "#0000FF");
  51. pref("editor.active_link_color",            "#000088");
  52. pref("editor.followed_link_color",          "#FF0000");
  53. pref("editor.background_color",             "#FFFFFF");
  54. pref("editor.use_background_image",         false);
  55. pref("editor.default_background_image",     "");
  56. pref("editor.use_custom_default_colors", 1);
  57.  
  58. pref("editor.hrule.height",                 2);
  59. pref("editor.hrule.width",                  100);
  60. pref("editor.hrule.width_percent",          true);
  61. pref("editor.hrule.shading",                true);
  62. pref("editor.hrule.align",                  1); // center
  63.  
  64. pref("editor.table.maintain_structure", true);
  65.  
  66. pref("editor.prettyprint", true);
  67.  
  68. pref("editor.throbber.url","chrome://editor-region/locale/region.properties");
  69.  
  70. pref("editor.toolbars.showbutton.new", true);
  71. pref("editor.toolbars.showbutton.open", true);
  72. pref("editor.toolbars.showbutton.save", true);
  73. pref("editor.toolbars.showbutton.publish", true);
  74. pref("editor.toolbars.showbutton.preview", true);
  75. pref("editor.toolbars.showbutton.cut", false);
  76. pref("editor.toolbars.showbutton.copy", false);
  77. pref("editor.toolbars.showbutton.paste", false);
  78. pref("editor.toolbars.showbutton.print", true);
  79. pref("editor.toolbars.showbutton.find", false);
  80. pref("editor.toolbars.showbutton.image", true);
  81. pref("editor.toolbars.showbutton.hline", false);
  82. pref("editor.toolbars.showbutton.table", true);
  83. pref("editor.toolbars.showbutton.link", true);
  84. pref("editor.toolbars.showbutton.namedAnchor", false);
  85.  
  86. pref("editor.toolbars.showbutton.bold", true);
  87. pref("editor.toolbars.showbutton.italic", true);
  88. pref("editor.toolbars.showbutton.underline", true);
  89. pref("editor.toolbars.showbutton.DecreaseFontSize", true);
  90. pref("editor.toolbars.showbutton.IncreaseFontSize", true);
  91. pref("editor.toolbars.showbutton.ul", true);
  92. pref("editor.toolbars.showbutton.ol", true);
  93. pref("editor.toolbars.showbutton.outdent", true);
  94. pref("editor.toolbars.showbutton.indent", true);
  95.  
  96. pref("editor.toolbars.showbutton.absolutePosition", true);
  97. pref("editor.toolbars.showbutton.decreaseZIndex", true);
  98. pref("editor.toolbars.showbutton.increaseZIndex", true);
  99.  
  100. pref("editor.auto_save",                    false);
  101. pref("editor.auto_save_delay",              10);    // minutes
  102. pref("editor.use_html_editor",              0);
  103. pref("editor.html_editor",                  "");
  104. pref("editor.use_image_editor",             0);
  105. pref("editor.image_editor",                 "");
  106.  
  107. pref("editor.history.url_maximum", 10);
  108.  
  109. pref("editor.publish.",                      "");
  110. pref("editor.lastFileLocation.image",        "");
  111. pref("editor.lastFileLocation.html",         "");
  112. pref("editor.save_associated_files",         true);
  113. pref("editor.always_show_publish_dialog",    false);
  114.  
  115. /*
  116.  * What are the entities that you want Mozilla to save using mnemonic
  117.  * names rather than numeric codes? E.g. If set, we'll output  
  118.  * otherwise, we may output 0xa0 depending on the charset.
  119.  *
  120.  * "none"   : don't use any entity names; only use numeric codes.
  121.  * "basic"  : use entity names just for   & < > " for 
  122.  *            interoperability/exchange with products that don't support more
  123.  *            than that.
  124.  * "latin1" : use entity names for 8bit accented letters and other special
  125.  *            symbols between 128 and 255.
  126.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  127.  *            other special markup symbols as defined in HTML4.
  128.  */
  129. //pref("editor.encode_entity",                 "html");
  130.  
  131.