<%-- __________________________________________________________________________________________ Dreamweaver puts include to this file just before <%--#RevizeProperties: (for templates) It includes code (e.g. css, javascript) needed for any plugins used on the page. The plugin html/jsp included in the must define a class level String variable e.g. <%! String "revize_document_center"; %> The existance of these class level String variables is then checked by jsp code below using the "isRevizePluginActive(...)" class level method. NOTE: any include that declares variables for future use, must declare them at the class level because the include is contained within the if scope. __________________________________________________________________________________________ --%><%@ include file="/plugins/setup/setup_isRevizePluginActive.jsp" %> <% boolean plugin_debug = false; //can be set true on page to trigger out.println(...) // document_center if (isRevizePluginActive("revize_document_center")) { %><%@ include file="/plugins/document_center/document_center.head_include.jsp" %><% } // slideshow if (isRevizePluginActive("revize_slideshow")) { %><%@ include file="/plugins/slideshow/slideshow_header_include.v2.jsp" %><% } // photo_gallery if (isRevizePluginActive("revize_photo_gallery")) { %><%@ include file="/plugins/photo_gallery/photo_gallery.head_include.jsp" %><% } // menus if (isRevizePluginActive("revize_menus")) { %><%@ include file="/plugins/menus/menus_head_include.jsp" %><% } // always include general javascript functions %><%@ include file="/plugins/general/general.script.head_include.jsp" %><% %>