The Configuration Folders

Many Dreamweaver features are extensions developed in JavaScript and HTML. The Configuration folders contain these extensions. If you customize or extend the Dreamweaver product, you modify these files or add your code source files to one or more of these folders. By familiarizing yourself with these folders, you can discover the interface for extensions as well as working examples of each extension type.

Warning: The files in the Configuration folders make up much of the Dreamweaver product. Do not modify, delete, or add to these files unless you know how to customize and extend Dreamweaver. Before you attempt to customize Dreamweaver, read "Customizing Dreamweaver" in Using Dreamweaver. To extend Dreamweaver, you should be proficient in JavaScript and familiar with the Dreamweaver API as documented in Extending Dreamweaver.

Some folder names are obvious. For example, Objects are kept in the Objects subfolder; Behaviors are kept in the Behaviors subfolder. One folder that does not correspond to a particular extension type is the Shared folder. The Shared folder is the central repository for utility functions, classes, and images that are commonly used by all extensions.

The following Configuration files and folders correspond to how Dreamweaver features are organized:

 

File/folder name Contents
ActiveXNames.txt A list of ActiveX class IDs; used to populate the ClassID pop-up menu in the ActiveX inspector.
Extensions.txt

A list of file extensions recognized by Dreamweaver.

If you add an extension to this file, double-clicking a file with that extension in the Site window opens it in Dreamweaver.

Extensions.txt also determines what file types are shown in the File > Open dialog box. To show files of a particular type in that dialog box by default, add the appropriate extension to the first line of Extensions.txt. For more information, see "Customizing Dreamweaver" in Using Dreamweaver.

FTPExtensionMap.txt

A list of file extensions and the transfer modes associated with them.

This file determines how files are uploaded and downloaded by Dreamweaver: in ASCII mode or Binary mode. You can add items to this list or change the mode of existing items. On the Macintosh, this file is also used to set the file type and creator of files that are downloaded from a non-Macintosh server.

SourceFormat.txt

HTML Format preferences reside in this file. Any changes you make to the HTML Format preferences (Edit > Preferences) are saved in this file when you close the Preferences dialog box. For finer control over HTML source formatting, you can edit this file directly. For more information about editing SourceFormat.txt, see "Customizing Dreamweaver" in Using Dreamweaver.

CFML and JSP tag formatting preferences also reside in this file. Add tag definitions to this file when you write server behaviors that insert custom tags into the user's document. Tag declarations should follow the Dreamweaver syntax for tags:

<[tag name] [element information] [format options]>

For example, <jsp:setProperty break="1,0,0,1" namecase="jsp:setProperty">.

TagAttributeList.txt

A list of tags and their attributes. Used by the Quick Tag Editor and the Find and Replace dialog boxes.

To make custom tags and attributes appear in the Quick Tag Editor or Find and Replace dialog boxes, add them to this file.

Behaviors Files used by the Behavior inspector.
  Actions

Items that appear in the Actions (+) pop-up menu in the Behavior inspector.

Each action is separated into two files (one .js file and one .htm file) for localization purposes. The HTML file contains the interface for the behavior: the text and form fields that appear in a dialog box when you select the action from the Actions pop-up menu. You can modify this file to make the form fields larger or smaller. The JavaScript file contains the JavaScript code that inserts the behavior into your document. Do not make changes to this file, unless you are proficient in JavaScript and familiar with the Behavior API as documented in Extending Dreamweaver.

  Events

Items that appear in the Events For pop-up menu at the top of the Behavior inspector.

Each file is named for the browser or browsers it represents, and it contains a list of HTML elements and the events that are supported for each element by all of the browsers in the file name. For example, Microsoft Internet Explorer (IE) 3.0 supports the onMouseMove and onMouseOver events for the A tag, while Netscape Navigator 3.0 supports the onClick, onMouseOut, and onMouseOver events. The 3.0 and Later Browsers.htm file lists only onMouseOver for the A tag because it is the only event supported for that tag by both IE 3.0 and Netscape 3.0.

For each element, one event is marked with an asterisk (for example, onClick="*"). This is the default event for the element. Unless otherwise specified in an action file, this event appears in the Events column of the Behavior inspector when you apply a behavior to the element. For example, onClick is the default event for the A tag in the Netscape 3.0.htm file. If you select a link in the Document window, choose Netscape 3.0 from the Events For pop-up menu in the Behavior inspector, and choose Call JavaScript from the Actions pop-up menu, onClick appears automatically in the Events column when you click OK in the dialog box. If you would rather make onMouseOver the default event for links in Netscape 3.0, move the asterisk from onClick to onMouseOver in the Netscape 3.0.htm file.

BrowserProfiles

Files used by the Check Target Browsers feature.

Each file in this folder is named for the browser it represents, and it contains information about the tags that are and are not supported by that browser. For more information about browser profiles, see "Customizing Dreamweaver" in Using Dreamweaver.

Commands

Items that appear in the Commands menu (and other menus within Dreamweaver).

Many of the commands in this folder are separated into two files (one .js file and one .htm file) for localization purposes. The HTML file contains the interface for the command: the text and form fields that appear in a dialog box when you select the command from the menu. You can modify this file to make the form fields larger or smaller. The JavaScript file contains the JavaScript code that makes the command work; do not make changes to this file unless you are proficient in JavaScript.

You may notice that some of the items in the Commands folder have the same names as some of the items in the Objects folder. This is because some objects launch commands. Commands are more flexible than objects, but only objects can appear in the Object panel. By calling a command from an object file, Dreamweaver can get the best of both kinds of extensions.

Dictionaries

The dictionaries used by the Check Spelling feature.

Additional dictionaries can be downloaded from the Macromedia Web site at http://www.macromedia.com/support/dreamweaver/dictionary.html.

Encodings

Additional character encodings for Dreamweaver; used to populate the Document Encoding pop-up menu in the Page Properties dialog box.

Dreamweaver supports several encodings by default, including Western (Latin1), Japanese (Shift JIS, JIS, EUC), Traditional Chinese, Simplified Chinese, and Korean. These encodings always appear in the Document Encoding pop-up menu and cannot be removed. Support for additional languages and character sets (including Cyrillic, Greek, and Icelandic) is provided by the files in this folder.

Flash Objects

The files used to create new Flash Objects. Flash Button and Flash Text features are built using this API.

  Flash Buttons

Flash button template files.

  Flash Buttons Preview

Flash button previews of template files.

  Flash Text

Flash text template file.

Floaters

Custom floating panels.

If you create or download a custom floating panel, it should be stored in this folder.

Generator

Files required for using Flash Objects inside Dreamweaver, including a custom Generator object for integration with Dreamweaver.

Inspectors

Custom property inspectors.

Most of the property inspectors in Dreamweaver are hard-coded into the product. The inspectors for items in the HEAD (such as META, TITLE, and LINK tags), however, are custom inspectors written in HTML and JavaScript. The property inspectors in this folder are separated into two files (one .js file and one .htm file) for localization purposes. The HTML file contains the interface for the inspector: the text and form fields that appear in the Property inspector floating panel. The JavaScript file contains the JavaScript code that makes the inspector work; do not make changes to this file unless you are proficient in JavaScript and familiar with the Property inspector API as documented in Extending Dreamweaver.

JSExtensions

Custom shared libraries.

The custom shared libraries in this folder make Dreamweaver's extensions more powerful and flexible by adding new JavaScript functions. Because some of the files in the Translators and Commands files depend on these shared libraries, they should not be removed. To add your own shared libraries to Dreamweaver, see the section on C-level extensibility in Extending Dreamweaver.

Menus

The file that defines the entire menu structure for Dreamweaver (menus.xml), and a backup copy of that file (menus.bak) to allow you to restore default menus.

The menus.xml file specifies the names and behavior of all menus and menu items in Dreamweaver. It also specifies all of the keyboard shortcuts and mnemonics used by Dreamweaver. For information about menus.xml, see "Customizing Dreamweaver" in Using Dreamweaver. For a list of keyboard shortcuts, see "Keyboard Shortcuts" in Using Dreamweaver.

To add your own menu commands, create a separate folder inside Menus and store your menu command files there. For more information about creating menu commands, see the Menu commands section of Extending Dreamweaver.

  Custom Sets

Customizations of the menu.xml file that provide keyboard shortcuts similar to other products.

  MM

Files (called menu commands) that control the behavior of many of the menu items in Dreamweaver.

This folder is reserved for the menu commands that ship with Dreamweaver.

Objects

Items that appear in the Insert menu and Object panel.

To appear in the Object panel or Insert menu, all object files must be stored in a subfolder of the Objects folder. All of the objects in these subfolders are split into at least two files (an .htm file and a .gif file), and in some cases three (a .js file as well). The GIF file is the icon that appears in the Object panel. The HTML file contains the interface for the object: the text and form fields that appear in a dialog box (if necessary) when you select an object from the menu or panel. The TITLE tag in the HTML file determines the name that appears in the Insert menu and Object panel. The JavaScript file (or the HTML file if no .js file exists) contains the JavaScript code that inserts the object into your document. You can modify the HTML file to make the form fields larger or smaller, but do not make changes to the JavaScript unless you are proficient in JavaScript and familiar with the Object API as documented in Extending Dreamweaver.

  Characters

Items that appear in the Characters category of the Object panel.

  Common Items that appear in the common category of the Object panel.
  Forms Items that appear in the Forms category of the Object panel.
  Frames Items that appear in the Frames category of the Object panel.
  Head Items that appear in the Head category of the Object panel.
  Invisibles Items that appear in the Invisibles category of the Object panel.
  Special Items that appear in the Special category of the Object panel.
  Tools Items that appear in the Layout category of the Object panel.
Extensions

Extensions installed using the Extension Manager.

This folder is for installed extensions. To install an extension, first save the extension's package file (*.mxp) in the Dreamweaver 4/Downloaded Extensions folder (which is at the same level as the Configuration folder). Then, launch the Extension Manager directly from Dreamweaver by choosing Manage Extensions from the Commands menu. In the Extension Manager, select File -> Install Extension (Ctrl-I). Extension Manager installs the extension file in this Configuration/Extensions folder.

Plugins

A list of plugins that Dreamweaver does not support (UnsupportedPlugins.txt), plus any plugins that are to be used to play plugin content in Dreamweaver.

Dreamweaver automatically scans the plugins folders of any browsers on your hard drive for a suitable plugin when you opt to play plugin content, so storing plugins in this folder is not strictly necessary.

Queries

Search patterns that you save in the Find or Replace dialog box. By default, this folder is empty.

References

O'Reilly HTML Reference material that appears on the Dreamweaver Reference panel.

Reports

Extension for Dreamweaver reports.

Shared

Files to be shared by multiple extensions.

This folder is reserved for the shared files that ship with Dreamweaver, but any extension can reference the files in this folder. To add your own shared files, create a separate folder inside Shared and store your files there.

Note: The contents of this folder may change in future versions of Dreamweaver.

  MM

The shared scripts, images, and classes used by the extensions that ship with Dreamweaver.

SiteCache

Files that contain lists of all incoming and outgoing links for the files in defined sites.

This folder is created the first time you use a site. By default, this folder is empty. It remains empty until you define a site and create a cache file.

SourceControl

Source control settings and scripts.

If you write an extension to integrate Dreamweaver with a new source control system, you place your C-level DLL/shared code in this folder. There is a minimum set of API functions that you must support. For more information, see "The Source Control API" in Extending Dreamweaver.

Startup

Scripts that run when Dreamweaver starts up.

For more information on creating startup scripts, see "The Document Object Model" in Extending Dreamweaver.

Templates

The file default.html is used to define the starting contents for new pages opened in Dreamweaver.

ThirdPartyTags

Files that define the syntax and tag names of third-party markup (such as ASP, PHP, and custom HTML).

Third-party tag definition files are XML files. Each XML file contains one or more tagspecs, and each tagspec may have an associated GIF file that defines the icon for the markup. For more information about third-party tags and tagspecs, see "Customizing Dreamweaver" in Using Dreamweaver.

Translators

Extension files that translate the visual appearance of specific markup text.

Do not edit the files in this folder unless you are proficient in JavaScript and familiar with the Data translator API as documented in Extending Dreamweaver.

Gポイントポイ活 Amazon Yahoo 楽天

無料ホームページ 楽天モバイル[UNLIMITが今なら1円] 海外格安航空券 海外旅行保険が無料!