JSDoc Documentation

Summary

No summary generated for these documents.


File Summary
about.xml An "about" dialog for Mozile.
CopyCutPaste.js Allows Mozile to do some basic Copy&Paste operations. In an unprivileged environment it will use a local clipboard. In a privileged enviromnent the system clipboard will be used.
core.js This file defines the core Mozile objects, which are required to allow basic editing and to support the rest of the Mozile system. Additional tools and interface elements are defined in "core/interface.js".
core.xml XBL definitions for Mozile editor widgets.
extension.css CSS rules for the Mozile Extension.
extension.js JavaScript code for controlling the Mozile Extension. This is one of the few files which does not appeaar in Mozile Server-Side.
firefoxOverlay.xul An XUL overlay for Firefox and the Mozile Extension.
HTTPPost.js This module is used to save documents via HTTP POST. You must have a server which is configured to accept the POST data and take action. Examples for catching the POST data are provided in PHP and JSP format. The PHP examples include tests for handling saving errors.

To configure Mozile to use HTTPPost for saving, add the following line to the "modules" array in your mozile.js configuration file: "HTTPPost". You can add more options, for example: "HTTPPost: url='http://somewhere.com/save.php', default=true".

interface.css This file defines the basic CSS style rules for the Mozile interface elements. These rules are meant only to make the Mozile widgets and dialogs functional, and other rules will be needed to make it look pretty.
interface.js This extends "core.js" to include interface elements such as a toolbar, several popup dialogs, as well as configurable commands.
interface.xml This file describes the Mozile editor widget and toolbar widget in Mozilla's XBL and XUL languages.
loader.js This file configures the loading of Mozile into the Mozile Extensions. It is identical to "mozile.js" except for the settings.
LocalFile.js A module used for saving files to a local file system. Requires privileges in order to function.
message.xml A "message" dialog for Mozile. Used for debugging and status messages.
mozile.js This file is used to configure and load Mozile. Mozile is a collection of JavaScripts which allow inline editing of XHTML/XML documents in Mozilla browsers. See the "INSTRUCTIONS" section below for more details on configuring this file. Project Homepage:
mozillaOverlay.xul An XUL overlay for the Mozilla browser and the Mozile Extension.
options.xul An "options" dialog for the Mozile Extension.
save.xml A "Save As" dialog for Mozile.
source.xml A "source" dialog for Mozile. Used by the "Dialog" save method to display the source code for the document.
TestModule1.js A very simple test module.
TestModule2.js A very simple test module.
UndoRedo.js Allows Mozile to store a stack of past document states, and restore them on command.
warning.xul A "warning" dialog for the Mozile Extension which allows the user to choose whether or not to enhance the Mozile editor on a given page.
XHTMLBasic.js The XHTMLBasic modules includes commands derived from the MozileCommand object which allow for editing of HTML and XHTML documents. ALso included is a revision of the Mozile.initializeToolbar() function, which creates a number of commands commonly used in XHTML editing. This module does not include support for validation of XHTML documents. Instead it makes some assumptions about XHTML, which lead to a more light-weight implementation. Elements are distinguished into block and non-block (inline) elements, based on their CSS "display" property. Most commands function differently on blocks than they do on inline elements. While the distinction could allow the creation of invalid XHTML documents, in most cases the commands will preserve the validity of the XHTML. Module options: - semantic=[true|false] Default is "true". When this option is set to "true", "strong" and "em" will be used for the bold and italic commands. When it is false, "b" and "i" will be used instead.


Documentation generated by JSDoc on Thu Feb 16 20:20:37 2006