<HTML>
<HEAD>
<!-- 
/*************************************************************************
 *
 * ADOBE CONFIDENTIAL
 * ___________________
 *
 *  Copyright 2012 Adobe Systems Incorporated
 *  All Rights Reserved. 
 * 
 * NOTICE:  All information contained herein is, and remains  
 * the property of Adobe Systems Incorporated and its suppliers, 
 * if any.  The intellectual and technical concepts contained 
 * herein are proprietary to Adobe Systems Incorporated and its 
 * suppliers and are protected by trade secret or copyright law. 
 * Dissemination of this information or reproduction of this material 
 * is strictly forbidden unless prior written permission is obtained 
 * from Adobe Systems Incorporated. 
 **************************************************************************/ 
 -->

<TITLE>PROTO Translator</TITLE>

<meta http-equiv="Content-Type" content="text/html; charset=">

<SCRIPT>

    /*
function commandButtons(){
      return new Array( "OK","translateMarkup(dreamweaver.getDocumentPath('document'), dreamweaver.getSiteRoot(), 
      dreamweaver.getDocumentDOM().documentElement.outerHTML)", "Cancel", "window.close()");
}
*/
    
function getTranslatorInfo()
{
  var returnArray = new Array(7);

  returnArray[0] = "MM_PROTO";    // The TRANSLATOR_CLASS
  returnArray[1] = "ADOBE PROTO";       // The title
  returnArray[2] = "1" 				   // The number of extensions
  returnArray[3] = "pro" 	   // Extensions - indicate that we run on any
									   // extension for the XSLT document type
									   // as defined in MMDocumentTypes.xml
  returnArray[4] = "0";                // The number of expressions           // Expression for PI and insert
  returnArray[5] = "allFiles";         // Run if doc contains expr
  returnArray[6] = "0";               // priority order to apply translator

  return returnArray
}


function translateMarkup(docNameStr, siteRootStr, inStr)
{
   //var outStr = "This is to test PROTO file content";
  
   //alert("We are now in translate Markup");

   //return outStr;
   //dw.getDocumentDOM().documentElement.outerHTML = outStr;
    return inStr;

}

</SCRIPT>

</HEAD>

<BODY>
</BODY>
</HTML>