// Copyright 1998, 1999, 2000, 2001, 2002, 2003 Macromedia, Inc. All rights reserved.
//-----------------------------------------------------
//
// Source Formatting.js
//
// This file contains the implementation to fire off the Dreamweaver
// source formatter.

function canAcceptCommand()
{
  retVal = false;
  if (dw.getDocumentDOM() && (dw.getDocumentDOM().getParseMode() == 'html' || dw.getDocumentDOM().getParseMode() == 'xml') && (dw.getFocus() == 'document' || dw.getFocus(true) == 'html' || dw.getFocus() == 'textView')){
    retVal = true;
  }
  return retVal;
}

// formatSource()
//
// This routine kicks off the Dreamweaver source formatter
// on the entire document by "touching" the HTML child tag
// innerHTML properties.
// 
function formatSource(dom)
{
  var root = null;
  
  // If user is in CI, use the top level doc.
  if( dom )
    root = dom;
  else
    root = dw.getDocumentDOM();

  // make sure we're synched before we get length or do the format
  root.synchronizeDocument();

  var outerHTML = root.documentElement.outerHTML;
  

   // make sure we're synched before do the format
   root.synchronizeDocument();
   root.formatRange(0, outerHTML.length);
  return;         
}
