/**
  * Tests GadgetContext->getForcedJsLibs()
  */
 public function testGetForcedJsLibs()
 {
     $this->assertEquals($this->testData['libs'], $this->GadgetContext->getForcedJsLibs());
 }
 /**
  * Outputs a html content type gadget.
  * It creates a html page, with the javascripts from the features inline into the page, plus
  * calls to 'gadgets.config.init' with the container configuration (config/container.js) and
  * 'gadgets.Prefs.setMessages_' with all the substitutions. For external javascripts it adds
  * a <script> tag.
  *
  * @param Gadget $gadget
  * @param GadgetContext $context
  */
 private function outputHtmlGadget($gadget, $context, $view)
 {
     $content = '';
     $externJs = '';
     $externFmt = "<script src=\"%s\"></script>";
     $forcedLibs = $context->getForcedJsLibs();
     // allow the &libs=.. param to override our forced js libs configuration value
     if (empty($forcedLibs)) {
         $forcedLibs = Config::get('focedJsLibs');
     }
     $this->setContentType("text/html; charset=UTF-8");
     if ($context->getIgnoreCache()) {
         // no cache was requested, set non-caching-headers
         $this->setNoCache(true);
     } elseif (isset($_GET['v'])) {
         // version was given, cache for a long long time (a year)
         $this->setCacheTime(365 * 24 * 60 * 60);
     } else {
         // no version was given, cache for 5 minutes
         $this->setCacheTime(5 * 60);
     }
     // Was a privacy policy header configured? if so set it
     if (Config::get('P3P') != '') {
         header("P3P: " . Config::get('P3P'));
     }
     if (!$view->getQuirks()) {
         $content .= "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n";
     }
     $content .= "<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/><style type=\"text/css\">" . Config::get('gadget_css') . "</style></head><body>\n";
     // Forced libs first.
     if (!empty($forcedLibs)) {
         $libs = explode(':', $forcedLibs);
         $content .= sprintf($externFmt, Config::get('default_js_prefix') . $this->getJsUrl($libs, $gadget) . "&container=" . $context->getContainer()) . "\n";
     }
     $content .= "<script>\n";
     if (!empty($forcedLibs)) {
         // if some of the feature libraries are externalized (through a browser cachable <script src="/gadgets/js/opensocial-0.7:settitle.js">
         // type url), then we don't want to include dependencies twice, so find the complete features chain, so we can skip over those
         $forcedLibsArray = explode(':', $forcedLibs);
         $registry = $this->context->getRegistry();
         $missing = array();
         $registry->getIncludedFeatures($forcedLibsArray, $forcedLibsArray, $missing);
     }
     foreach ($gadget->getJsLibraries() as $library) {
         $type = $library->getType();
         if ($type == 'URL') {
             // TODO: This case needs to be handled more gracefully by the js
             // servlet. We should probably inline external JS as well.
             $externJs .= sprintf($externFmt, $library->getContent()) . "\n";
             // else check if there are no forcedLibs, or if it wasn't included in their dep chain
         } elseif (empty($forcedLibs) || !in_array($library->getFeatureName(), $forcedLibsArray)) {
             $content .= $library->getContent();
         }
         // otherwise it was already included by config.forceJsLibs.
     }
     $content .= $this->appendJsConfig($context, $gadget, !empty($forcedLibs)) . $this->appendMessages($gadget) . $this->appendPreloads($gadget, $context) . "</script>";
     if (strlen($externJs) > 0) {
         $content .= $externJs;
     }
     $gadgetExceptions = array();
     $rewriter = new ContentRewriter();
     if ($rewriter->rewriteGadgetView($gadget, $view)) {
         $content .= $gadget->getSubstitutions()->substitute($view->getRewrittenContent());
     } else {
         $content .= $gadget->getSubstitutions()->substitute($view->getContent());
     }
     if (empty($content)) {
         // Unknown view
         $gadgetExceptions[] = "View: '" . $context->getView() . "' invalid for gadget: " . $gadget->getId()->getKey();
     }
     if (count($gadgetExceptions)) {
         throw new GadgetException(print_r($gadgetExceptions, true));
     }
     $content .= "\n<script>gadgets.util.runOnLoadHandlers();</script></body>\n</html>";
     echo $content;
 }
 /**
  * Outputs a html content type gadget.
  * It creates a html page, with the javascripts from the features inline into the page, plus
  * calls to 'gadgets.config.init' with the container configuration (config/container.js) and
  * 'gadgets.Prefs.setMessages_' with all the substitutions. For external javascripts it adds
  * a <script> tag.
  *
  * @param Gadget $gadget
  * @param GadgetContext $context
  */
 private function outputHtmlGadget($gadget, $context)
 {
     $this->setContentType("text/html; charset=UTF-8");
     $output = '';
     $output .= "<html>\n<head>\n";
     // TODO: This is so wrong. (todo copied from java shindig, but i would agree with it :))
     $output .= "<style type=\"text/css\">body,td,div,span,p{font-family:arial,sans-serif;} a {color:#0000cc;}a:visited {color:#551a8b;}a:active {color:#ff0000;}body{margin: 0px;padding: 0px;background-color:white;}</style>\n";
     $output .= "</head>\n<body>\n";
     $externJs = "";
     $inlineJs = "";
     $externFmt = "<script src=\"%s\"></script>";
     $forcedLibs = $context->getForcedJsLibs();
     foreach ($gadget->getJsLibraries() as $library) {
         $type = $library->getType();
         if ($type == 'URL') {
             // TODO: This case needs to be handled more gracefully by the js
             // servlet. We should probably inline external JS as well.
             $externJs .= sprintf($externFmt, $library->getContent()) . "\n";
         } else {
             if ($type == 'INLINE') {
                 $inlineJs .= $library->getContent() . "\n";
             } else {
                 // FILE or RESOURCE
                 if ($forcedLibs == null) {
                     $inlineJs .= $library->getContent() . "\n";
                 }
                 // otherwise it was already included by config.forceJsLibs.
             }
         }
     }
     // Forced libs first.
     if (!empty($forcedLibs)) {
         $libs = explode(':', $forcedLibs);
         $output .= sprintf($externFmt, $this->getJsUrl($libs)) . "\n";
     }
     if (strlen($inlineJs) > 0) {
         $output .= "<script><!--\n" . $inlineJs . "\n-->\n</script>\n";
     }
     if (strlen($externJs) > 0) {
         $output .= $externJs;
     }
     $output .= "<script><!--\n";
     $output .= $this->appendJsConfig($context, $gadget);
     $output .= $this->appendMessages($gadget);
     $output .= "-->\n</script>\n";
     $gadgetExceptions = array();
     $content = $gadget->getContentData($context->getView());
     if (empty($content)) {
         // unknown view
         $gadgetExceptions[] = "View: '" . $context->getView() . "' invalid for gadget: " . $gadget->getId()->getKey();
     }
     if (count($gadgetExceptions)) {
         throw new GadgetException(print_r($gadgetExceptions, true));
     }
     $output .= $content . "\n";
     $output .= "<script>gadgets.util.runOnLoadHandlers();</script>\n";
     $output .= "</body>\n</html>";
     if (Config::get('P3P') != '') {
         header("P3P: " . Config::get('P3P'));
     }
     echo $output;
 }