home *** CD-ROM | disk | FTP | other *** search
- <%
-
- '
- ' Support for Customizable UI for DynamicLink
- '
- ' COPYRIGHT (c) 2000 Adobe Systems Incorporated. All rights reserved.
- '
-
- Response.Buffer = False
- Response.ContentType = "text/xml"
-
- set fso = CreateObject("Scripting.FileSystemObject")
-
- thisFilename = Request.ServerVariables("PATH_TRANSLATED")
- foldername = fso.GetParentFolderName(thisFilename)
-
- set infoFolder = fso.GetFolder(foldername)
-
- Response.Write "<ui5>"
- for each file in infoFolder.Files
- if Right(file.Name, 8) = ".ui5.xml" then
- Response.Write "<!-- " & file.Name & " -->" & vbNewLine
-
- set stream = fso.OpenTextFile(file.Path, 1)
- Response.Write stream.ReadAll
-
- Response.Write vbNewLine
- end if
- next
-
- Response.Write "</ui5>"
-
- %>
-