X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Rest.html diff --git a/docs/source/Rest.html b/docs/source/Rest.html index 8b1787a8..17a8552f 100644 --- a/docs/source/Rest.html +++ b/docs/source/Rest.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @author Ed Spencer
  * @class Ext.data.proxy.Rest
  * @extends Ext.data.proxy.Ajax
@@ -116,24 +133,24 @@ Ext.define('Ext.data.proxy.Rest', {
     alternateClassName: 'Ext.data.RestProxy',
     alias : 'proxy.rest',
     
-    /**
+    /**
      * @cfg {Boolean} appendId True to automatically append the ID of a Model instance when performing a request based
      * on that single instance. See RestProxy intro docs for more details. Defaults to true.
      */
     appendId: true,
     
-    /**
+    /**
      * @cfg {String} format Optional data format to send to the server when making any request (e.g. 'json'). See the
      * RestProxy intro docs for full details. Defaults to undefined.
      */
     
-    /**
+    /**
      * @cfg {Boolean} batchActions True to batch actions of a particular type when synchronizing the store.
      * Defaults to <tt>false</tt>.
      */
     batchActions: false,
     
-    /**
+    /**
      * Specialized version of buildUrl that incorporates the {@link #appendId} and {@link #format} options into the
      * generated url. Override this to provide further customizations, but remember to call the superclass buildUrl
      * so that additional parameters like the cache buster string are appended
@@ -169,7 +186,7 @@ Ext.define('Ext.data.proxy.Rest', {
     }
 }, function() {
     Ext.apply(this.prototype, {
-        /**
+        /**
          * Mapping of action name to HTTP request method. These default to RESTful conventions for the 'create', 'read',
          * 'update' and 'destroy' actions (which map to 'POST', 'GET', 'PUT' and 'DELETE' respectively). This object should
          * not be changed except globally via {@link Ext#override Ext.override} - the {@link #getMethod} function can be overridden instead.
@@ -184,4 +201,6 @@ Ext.define('Ext.data.proxy.Rest', {
         }
     });
 });
-
\ No newline at end of file +
+ +