ctlx.mxi

来自「jakarta-taglibs」· MXI 代码 · 共 59 行

MXI
59
字号

<macromedia-extension
	name="Custom Tag Library Extension"
	version="$Revision: 1.2 $"
	type="suite">

	<!-- List the required/compatible products -->
	
	<products>
		<product name="UltraDev" version="1" primary="false" /> 
	</products> 

	<!-- Describe the author -->
	
	<author name="Dan Mandell" />

	<!-- Describe the extension -->
	
	<description>
	<![CDATA[
	An extension for creating Java Server Pages with<br>
	custom tag libraries in Dreamweaver UltraDev.
	]]>
	</description>

	<!-- Describe where the extension shows in the UI of the product -->

	<ui-access>
	<![CDATA[
	Access from the "Use Custom Tags" and "Edit Custom Tags" floaters <br>
	available under the Window menu.
	]]>
	</ui-access>

	<!-- Describe the files that comprise the extension -->
	
	<files>
		<file name="useTagLibs.js" destination="$ultradev/configuration/Commands/customTags/" />
		<file name="tagLibInsert.js" destination="$ultradev/configuration/Commands/customTags/" />
		<file name="tagEdit.js" destination="$ultradev/configuration/Commands/customTags/" />
		<file name="tagLibData.js" destination="$ultradev/configuration/Commands/customTags/" />
		<file name="useTagLibs.html" destination="$ultradev/configuration/Floaters/" />
		<file name="tagEdit.html" destination="$ultradev/configuration/Floaters/" />
	</files>

	<!-- Describe the changes to the configuration -->
	
	<configuration-changes>
		
		<!-- Add an entry to the commands menu -->

		<menu-insert insertBefore="DWMenu_Window_Default" skipSeparator="false">
			<menuitem name="Use Custom Tags" enabled="true" checked="dw.getFloaterVisibility('useTagLibs')" command="dw.toggleFloater('useTagLibs');" id="UseCustomTagsFloater" />
			<menuitem name="Edit Custom Tags" enabled="true" checked="dw.getFloaterVisibility('tagEdit')" command="dw.toggleFloater('tagEdit');" id="TagEditFloater" />
			<separator />
		</menu-insert>
	
	</configuration-changes>
</macromedia-extension>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?