Преглед изворни кода

[MANUAL] English:

- erased endline spaces

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19993 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas пре 16 година
родитељ
комит
bcf5cb33be
1 измењених фајлова са 17 додато и 17 уклоњено
  1. 17 17
      documentation/manual/en/module_specs/Zend_Service_WindowsAzure_Table.xml

+ 17 - 17
documentation/manual/en/module_specs/Zend_Service_WindowsAzure_Table.xml

@@ -87,13 +87,13 @@ foreach ($result as $table) {
             has a primary key and a set of properties. A property is a named, typed-value pair,
             has a primary key and a set of properties. A property is a named, typed-value pair,
             similar to a column.
             similar to a column.
         </para>
         </para>
-        
+
         <para>
         <para>
             The Table service does not enforce any schema for tables, so two entities in the same
             The Table service does not enforce any schema for tables, so two entities in the same
             table may have different sets of properties. Developers may choose to enforce a schema
             table may have different sets of properties. Developers may choose to enforce a schema
             on the client side. A table may contain any number of entities.
             on the client side. A table may contain any number of entities.
         </para>
         </para>
-        
+
         <para>
         <para>
             <classname>Zend_Service_WindowsAzure_Storage_Table</classname> provides 2 ways of
             <classname>Zend_Service_WindowsAzure_Storage_Table</classname> provides 2 ways of
             working with entities:
             working with entities:
@@ -127,12 +127,12 @@ class SampleEntity extends Zend_Service_WindowsAzure_Storage_TableEntity
     * @azure Name
     * @azure Name
     */
     */
     public $Name;
     public $Name;
-    
+
     /**
     /**
     * @azure Age Edm.Int64
     * @azure Age Edm.Int64
     */
     */
     public $Age;
     public $Age;
-    
+
     /**
     /**
     * @azure Visible Edm.Boolean
     * @azure Visible Edm.Boolean
     */
     */
@@ -210,12 +210,12 @@ class SampleEntity extends Zend_Service_WindowsAzure_Storage_TableEntity
      * @azure Name
      * @azure Name
      */
      */
     public $Name;
     public $Name;
-    
+
     /**
     /**
      * @azure Age Edm.Int64
      * @azure Age Edm.Int64
      */
      */
     public $Age;
     public $Age;
-    
+
     /**
     /**
      * @azure Visible Edm.Boolean
      * @azure Visible Edm.Boolean
      */
      */
@@ -332,7 +332,7 @@ public $Age;
                 To use the <classname>Zend_Service_WindowsAzure_Storage_Table</classname> class
                 To use the <classname>Zend_Service_WindowsAzure_Storage_Table</classname> class
                 without defining a schema, you can make use of the
                 without defining a schema, you can make use of the
                 <classname>Zend_Service_WindowsAzure_Storage_DynamicTableEntity</classname> class.
                 <classname>Zend_Service_WindowsAzure_Storage_DynamicTableEntity</classname> class.
-                This class inherits <classname>Zend_Service_WindowsAzure_Storage_TableEntity</code>
+                This class inherits <classname>Zend_Service_WindowsAzure_Storage_TableEntity</classname>
                 like an enforced schema class does, but contains additional logic to make it dynamic
                 like an enforced schema class does, but contains additional logic to make it dynamic
                 and not bound to a schema.
                 and not bound to a schema.
             </para>
             </para>
@@ -404,7 +404,7 @@ $target->Name = 'Name'; // Will add property "Name" of type "Edm.String"
 $target->Age  = 25;     // Will add property "Age" of type "Edm.Int32"
 $target->Age  = 25;     // Will add property "Age" of type "Edm.Int32"
 
 
 // Change type of property "Age" to "Edm.Int32":
 // Change type of property "Age" to "Edm.Int32":
-$target->setAzurePropertyType('Age', 'Edm.Int64'); 
+$target->setAzurePropertyType('Age', 'Edm.Int64');
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
 
 
@@ -515,7 +515,7 @@ $entity = $storageClient->retrieveEntityById(
 $entity->Name = 'New name';
 $entity->Name = 'New name';
 
 
 // last parameter instructs the Etag check:
 // last parameter instructs the Etag check:
-$result = $storageClient->updateEntity('testtable', $entity, true); 
+$result = $storageClient->updateEntity('testtable', $entity, true);
 ]]></programlisting>
 ]]></programlisting>
                 </example>
                 </example>
             </sect4>
             </sect4>
@@ -646,20 +646,20 @@ $storageClient = new Zend_Service_WindowsAzure_Storage_Table(
 
 
 // Start batch
 // Start batch
 $batch = $storageClient->startBatch();
 $batch = $storageClient->startBatch();
-            
+
 // Insert entities in batch
 // Insert entities in batch
 $entities = generateEntities();
 $entities = generateEntities();
 foreach ($entities as $entity) {
 foreach ($entities as $entity) {
     $storageClient->insertEntity($tableName, $entity);
     $storageClient->insertEntity($tableName, $entity);
 }
 }
-            
+
 // Commit
 // Commit
 $batch->commit();
 $batch->commit();
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
         </sect3>
         </sect3>
     </sect2>
     </sect2>
-  
+
     <sect2 id="zend.service.windowsazure.storage.table.sessionhandler">
     <sect2 id="zend.service.windowsazure.storage.table.sessionhandler">
         <title>Table storage session handler</title>
         <title>Table storage session handler</title>
 
 
@@ -670,7 +670,7 @@ $batch->commit();
             <classname>Zend_Service_WindowsAzure_SessionHandler</classname> class, which uses
             <classname>Zend_Service_WindowsAzure_SessionHandler</classname> class, which uses
             Windows Azure Table Storage as a session handler for PHP applications.
             Windows Azure Table Storage as a session handler for PHP applications.
         </para>
         </para>
-        
+
         <para>
         <para>
             To use the <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session
             To use the <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session
             handler, it should be registered as the default session handler for your PHP
             handler, it should be registered as the default session handler for your PHP
@@ -691,19 +691,19 @@ $sessionHandler = new Zend_Service_WindowsAzure_SessionHandler(
 $sessionHandler->register();
 $sessionHandler->register();
 ]]></programlisting>
 ]]></programlisting>
         </example>
         </example>
-    
+
         <para>
         <para>
             The above classname registers the
             The above classname registers the
             <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session handler and will
             <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session handler and will
             store sessions in a table called "sessionstable".
             store sessions in a table called "sessionstable".
         </para>
         </para>
-        
+
         <para>
         <para>
             After registration of the
             After registration of the
             <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session handler,
             <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session handler,
             sessions can be started and used in the same way as a normal PHP session:
             sessions can be started and used in the same way as a normal PHP session:
         </para>
         </para>
-        
+
         <example id="zend.service.windowsazure.storage.table.api.sessionhandler-usage">
         <example id="zend.service.windowsazure.storage.table.api.sessionhandler-usage">
             <title>Using table storage session handler</title>
             <title>Using table storage session handler</title>
 
 
@@ -726,7 +726,7 @@ if (!isset($_SESSION['firstVisit'])) {
 // ...
 // ...
 ]]></programlisting>
 ]]></programlisting>
         </example>
         </example>
-    
+
         <warning>
         <warning>
             <para>
             <para>
                 The <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session handler
                 The <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session handler