You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by ch...@apache.org on 2009/09/20 23:22:40 UTC

svn commit: r817104 - /incubator/shindig/trunk/php/src/gadgets/MakeRequestOptions.php

Author: chabotc
Date: Sun Sep 20 21:22:38 2009
New Revision: 817104

URL: http://svn.apache.org/viewvc?rev=817104&view=rev
Log:
Adding missing DOM makeRequest type

Modified:
    incubator/shindig/trunk/php/src/gadgets/MakeRequestOptions.php

Modified: incubator/shindig/trunk/php/src/gadgets/MakeRequestOptions.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/MakeRequestOptions.php?rev=817104&r1=817103&r2=817104&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/gadgets/MakeRequestOptions.php (original)
+++ incubator/shindig/trunk/php/src/gadgets/MakeRequestOptions.php Sun Sep 20 21:22:38 2009
@@ -57,7 +57,7 @@
   const DEFAULT_GET_SUMMARIES = false;
 
   static $VALID_HTTP_METHODS = array('GET', 'PUT', 'POST', 'HEAD', 'DELETE');
-  static $VALID_OUTPUT_FORMATS = array('TEXT', 'JSON', 'FEED');
+  static $VALID_OUTPUT_FORMATS = array('TEXT', 'JSON', 'FEED', 'DOM');
   static $VALID_AUTHZ = array('OAUTH', 'NONE', 'SIGNED');
   static $VALID_OAUTH_USE_TOKEN = array('NEVER', 'IF_AVAILABLE', 'ALWAYS');