Bug 496271, automation config for Tb2.0.0.22 build1, p=joduinn, r=me
[mozilla-1.9.git] / editor / ui / composer.js
bloba07f3205dc37390fc89cb448756af02f15ea05ba
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 of the GNU General Public License Version 2 or later (the "GPL"),
27  * or 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 ***** */
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  */
47 pref("editor.author",                       "");
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);
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
64 pref("editor.table.maintain_structure", true);
66 pref("editor.prettyprint", true);
68 pref("editor.throbber.url","chrome://editor-region/locale/region.properties");
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);
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);
96 pref("editor.toolbars.showbutton.absolutePosition", true);
97 pref("editor.toolbars.showbutton.decreaseZIndex", true);
98 pref("editor.toolbars.showbutton.increaseZIndex", true);
100 pref("editor.history.url_maximum", 10);
102 pref("editor.publish.",                      "");
103 pref("editor.lastFileLocation.image",        "");
104 pref("editor.lastFileLocation.html",         "");
105 pref("editor.save_associated_files",         true);
106 pref("editor.always_show_publish_dialog",    false);
109  * What are the entities that you want Mozilla to save using mnemonic
110  * names rather than numeric codes? E.g. If set, we'll output &nbsp;
111  * otherwise, we may output 0xa0 depending on the charset.
113  * "none"   : don't use any entity names; only use numeric codes.
114  * "basic"  : use entity names just for &nbsp; &amp; &lt; &gt; &quot; for 
115  *            interoperability/exchange with products that don't support more
116  *            than that.
117  * "latin1" : use entity names for 8bit accented letters and other special
118  *            symbols between 128 and 255.
119  * "html"   : use entity names for 8bit accented letters, greek letters, and
120  *            other special markup symbols as defined in HTML4.
121  */
122 //pref("editor.encode_entity",                 "html");
124 #ifndef XP_MACOSX
125 #ifdef XP_UNIX
126 pref("editor.disable_spell_checker", false);
127 pref("editor.dont_lock_spell_files", true);
128 #endif
129 #endif
131 pref("editor.CR_creates_new_p",      false);