Browse Source

[DOCUMENTATION] English: fix compilation errors

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20679 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael 16 years ago
parent
commit
2c533a2669

+ 33 - 33
documentation/manual/en/module_specs/Zend_Service_WindowsAzure_Blob.xml

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
 <!-- Reviewed: no -->
-<sect1 id="zend.service.windowsazure.storage.blob">
+<sect2 id="zend.service.windowsazure.storage.blob">
     <title>Zend_Service_WindowsAzure_Storage_Blob</title>
     <title>Zend_Service_WindowsAzure_Storage_Blob</title>
 
 
     <para>
     <para>
@@ -15,7 +15,7 @@
         order to provide a native PHP interface to the storage account.
         order to provide a native PHP interface to the storage account.
     </para>
     </para>
 
 
-    <sect2 id="zend.service.windowsazure.storage.blob.api">
+    <sect3 id="zend.service.windowsazure.storage.blob.api">
         <title>API Examples</title>
         <title>API Examples</title>
 
 
         <para>
         <para>
@@ -25,7 +25,7 @@
             features.
             features.
         </para>
         </para>
 
 
-        <sect3 id="zend.service.windowsazure.storage.blob.api.create-container">
+        <sect4 id="zend.service.windowsazure.storage.blob.api.create-container">
             <title>Creating a storage container</title>
             <title>Creating a storage container</title>
 
 
             <para>
             <para>
@@ -33,7 +33,7 @@
                 storage.
                 storage.
             </para>
             </para>
 
 
-            <example id="zend.service.windowsazure.storage.blob.api.create-container">
+            <example id="zend.service.windowsazure.storage.blob.api.create-container.example">
                 <title>Creating a storage container</title>
                 <title>Creating a storage container</title>
 
 
                 <programlisting language="php"><![CDATA[
                 <programlisting language="php"><![CDATA[
@@ -43,9 +43,9 @@ $result = $storageClient->createContainer('testcontainer');
 echo 'Container name is: ' . $result->Name;
 echo 'Container name is: ' . $result->Name;
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.blob.api.delete-container">
+        <sect4 id="zend.service.windowsazure.storage.blob.api.delete-container">
             <title>Deleting a storage container</title>
             <title>Deleting a storage container</title>
 
 
             <para>
             <para>
@@ -53,7 +53,7 @@ echo 'Container name is: ' . $result->Name;
                 storage.
                 storage.
             </para>
             </para>
 
 
-            <example id="zend.service.windowsazure.storage.blob.api.delete-container">
+            <example id="zend.service.windowsazure.storage.blob.api.delete-container.example">
                 <title>Deleting a storage container</title>
                 <title>Deleting a storage container</title>
 
 
                 <programlisting role="php"><![CDATA[
                 <programlisting role="php"><![CDATA[
@@ -61,9 +61,9 @@ $storageClient = new Zend_Service_WindowsAzure_Storage_Blob();
 $storageClient->deleteContainer('testcontainer');
 $storageClient->deleteContainer('testcontainer');
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.blob.api.storing-blob">
+        <sect4 id="zend.service.windowsazure.storage.blob.api.storing-blob">
             <title>Storing a blob</title>
             <title>Storing a blob</title>
 
 
             <para>
             <para>
@@ -71,7 +71,7 @@ $storageClient->deleteContainer('testcontainer');
                 development storage. Note that the container has already been created before.
                 development storage. Note that the container has already been created before.
             </para>
             </para>
 
 
-            <example id="zend.service.windowsazure.storage.blob.api.storing-blob">
+            <example id="zend.service.windowsazure.storage.blob.api.storing-blob.example">
                 <title>Storing a blob</title>
                 <title>Storing a blob</title>
 
 
                 <programlisting language="php"><![CDATA[
                 <programlisting language="php"><![CDATA[
@@ -85,9 +85,9 @@ $result = $storageClient->putBlob(
 echo 'Blob name is: ' . $result->Name;
 echo 'Blob name is: ' . $result->Name;
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.blob.api.copy-blob">
+        <sect4 id="zend.service.windowsazure.storage.blob.api.copy-blob">
             <title>Copying a blob</title>
             <title>Copying a blob</title>
 
 
             <para>
             <para>
@@ -97,7 +97,7 @@ echo 'Blob name is: ' . $result->Name;
                 created before.
                 created before.
             </para>
             </para>
 
 
-            <example id="zend.service.windowsazure.storage.blob.api.copy-blob">
+            <example id="zend.service.windowsazure.storage.blob.api.copy-blob.example">
                 <title>Copying a blob</title>
                 <title>Copying a blob</title>
 
 
                 <programlisting language="php"><![CDATA[
                 <programlisting language="php"><![CDATA[
@@ -111,9 +111,9 @@ $result = $storageClient->copyBlob(
 echo 'Copied blob name is: ' . $result->Name;
 echo 'Copied blob name is: ' . $result->Name;
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.blob.api.download-blob">
+        <sect4 id="zend.service.windowsazure.storage.blob.api.download-blob">
             <title>Downloading a blob</title>
             <title>Downloading a blob</title>
 
 
             <para>
             <para>
@@ -122,7 +122,7 @@ echo 'Copied blob name is: ' . $result->Name;
                 blob has been uploaded.
                 blob has been uploaded.
             </para>
             </para>
 
 
-            <example id="zend.service.windowsazure.storage.blob.api.download-blob">
+            <example id="zend.service.windowsazure.storage.blob.api.download-blob.example">
                 <title>Downloading a blob</title>
                 <title>Downloading a blob</title>
 
 
                 <programlisting language="php"><![CDATA[
                 <programlisting language="php"><![CDATA[
@@ -134,9 +134,9 @@ $storageClient->getBlob(
 );
 );
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.blob.api.public-blob">
+        <sect4 id="zend.service.windowsazure.storage.blob.api.public-blob">
             <title>Making a blob publicly available</title>
             <title>Making a blob publicly available</title>
 
 
             <para>
             <para>
@@ -151,7 +151,7 @@ $storageClient->getBlob(
                 storage. Note that the container has already been created before.
                 storage. Note that the container has already been created before.
             </para>
             </para>
 
 
-            <example id="zend.service.windowsazure.storage.blob.api.public-blob">
+            <example id="zend.service.windowsazure.storage.blob.api.public-blob.example">
                 <title>Making a blob publicly available</title>
                 <title>Making a blob publicly available</title>
 
 
                 <programlisting language="php"><![CDATA[
                 <programlisting language="php"><![CDATA[
@@ -161,10 +161,10 @@ $storageClient = new Zend_Service_WindowsAzure_Storage_Blob();
 $storageClient->setContainerAcl('testcontainer', Zend_Service_WindowsAzure_Storage_Blob::ACL_PUBLIC);
 $storageClient->setContainerAcl('testcontainer', Zend_Service_WindowsAzure_Storage_Blob::ACL_PUBLIC);
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
-    </sect2>
+        </sect4>
+    </sect3>
 
 
-    <sect2 id="zend.service.windowsazure.storage.blob.root">
+    <sect3 id="zend.service.windowsazure.storage.blob.root">
         <title>Root container</title>
         <title>Root container</title>
 
 
         <para>
         <para>
@@ -179,9 +179,9 @@ $storageClient->setContainerAcl('testcontainer', Zend_Service_WindowsAzure_Stora
             <varname>$root</varname>.  All other operations on the root container should be issued
             <varname>$root</varname>.  All other operations on the root container should be issued
             with the container name set to <varname>$root</varname>.
             with the container name set to <varname>$root</varname>.
         </para>
         </para>
-    </sect2>
+    </sect3>
 
 
-    <sect2 id="zend.service.windowsazure.storage.blob.wrapper">
+    <sect3 id="zend.service.windowsazure.storage.blob.wrapper">
         <title>Blob storage stream wrapper</title>
         <title>Blob storage stream wrapper</title>
 
 
         <para>
         <para>
@@ -189,7 +189,7 @@ $storageClient->setContainerAcl('testcontainer', Zend_Service_WindowsAzure_Stora
             client as a PHP file stream wrapper. The blob storage stream wrapper provides
             client as a PHP file stream wrapper. The blob storage stream wrapper provides
             support for using regular file operations on Windows Azure Blob Storage.
             support for using regular file operations on Windows Azure Blob Storage.
             For example, one can open a file from Windows Azure Blob Storage with
             For example, one can open a file from Windows Azure Blob Storage with
-            the <functionname>fopen()</functionname> function:
+            the <methodname>fopen()</methodname> function:
         </para>
         </para>
 
 
         <example id="zend.service.windowsazure.storage.blob.wrapper.sample">
         <example id="zend.service.windowsazure.storage.blob.wrapper.sample">
@@ -227,9 +227,9 @@ $storageClient->registerStreamWrapper('blob://'); // regiters blob:// on this st
             To unregister the stream wrapper, the <methodname>unregisterStreamWrapper()</methodname>
             To unregister the stream wrapper, the <methodname>unregisterStreamWrapper()</methodname>
             method can be used.
             method can be used.
         </para>
         </para>
-    </sect2>
+    </sect3>
 
 
-    <sect2 id="zend.service.windowsazure.storage.blob.sharedaccesssig">
+    <sect3 id="zend.service.windowsazure.storage.blob.sharedaccesssig">
         <title>Shared Access Signature</title>
         <title>Shared Access Signature</title>
 
 
         <para>
         <para>
@@ -254,7 +254,7 @@ http://phpstorage.blob.core.windows.net/phpazuretestshared1?st=2009-08-17T09%3A0
             container of the "phpstorage" account.
             container of the "phpstorage" account.
         </para>
         </para>
 
 
-        <sect3 id="zend.service.windowsazure.storage.blob.sharedaccesssig.generate">
+        <sect4 id="zend.service.windowsazure.storage.blob.sharedaccesssig.generate">
             <title>Generating a Shared Access Signature</title>
             <title>Generating a Shared Access Signature</title>
 
 
             <para>
             <para>
@@ -307,9 +307,9 @@ $sharedAccessUrl = storageClient->generateSharedAccessUrl(
 );
 );
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.blob.sharedaccesssig.consume">
+        <sect4 id="zend.service.windowsazure.storage.blob.sharedaccesssig.consume">
             <title>Working with Shared Access Signatures from others</title>
             <title>Working with Shared Access Signatures from others</title>
 
 
             <para>
             <para>
@@ -354,6 +354,6 @@ $storageClient->putBlob(
                 available for the latter, the Windows Azure SDK for PHP chose those credentials to
                 available for the latter, the Windows Azure SDK for PHP chose those credentials to
                 perform the request on Windows Azure blob storage.
                 perform the request on Windows Azure blob storage.
             </para>
             </para>
-        </sect3>
-    </sect2>
-</sect1>
+        </sect4>
+    </sect3>
+</sect2>

+ 14 - 14
documentation/manual/en/module_specs/Zend_Service_WindowsAzure_Queue.xml

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
 <!-- Reviewed: no -->
-<sect1 id="zend.service.windowsazure.storage.queue">
+<sect2 id="zend.service.windowsazure.storage.queue">
     <title>Zend_Service_WindowsAzure_Storage_Queue</title>
     <title>Zend_Service_WindowsAzure_Storage_Queue</title>
 
 
     <para>
     <para>
@@ -22,7 +22,7 @@
         provide a native PHP interface to the storage account.
         provide a native PHP interface to the storage account.
     </para>
     </para>
 
 
-    <sect2 id="zend.service.windowsazure.storage.queue.api">
+    <sect3 id="zend.service.windowsazure.storage.queue.api">
         <title>API Examples</title>
         <title>API Examples</title>
 
 
         <para>
         <para>
@@ -32,7 +32,7 @@
             features.
             features.
         </para>
         </para>
 
 
-        <sect3 id="zend.service.windowsazure.storage.queue.api.create-queue">
+        <sect4 id="zend.service.windowsazure.storage.queue.api.create-queue">
             <title>Creating a queue</title>
             <title>Creating a queue</title>
 
 
             <para>
             <para>
@@ -49,9 +49,9 @@ $result = $storageClient->createQueue('testqueue');
 echo 'Queue name is: ' . $result->Name;
 echo 'Queue name is: ' . $result->Name;
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.queue.api.delete-queue">
+        <sect4 id="zend.service.windowsazure.storage.queue.api.delete-queue">
             <title>Deleting a queue</title>
             <title>Deleting a queue</title>
 
 
             <para>
             <para>
@@ -66,9 +66,9 @@ $storageClient = new Zend_Service_WindowsAzure_Storage_Queue();
 $storageClient->deleteQueue('testqueue');
 $storageClient->deleteQueue('testqueue');
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.queue.api.storing-queue">
+        <sect4 id="zend.service.windowsazure.storage.queue.api.storing-queue">
             <title>Adding a message to a queue</title>
             <title>Adding a message to a queue</title>
 
 
             <para>
             <para>
@@ -86,9 +86,9 @@ $storageClient = new Zend_Service_WindowsAzure_Storage_Queue();
 $storageClient->putMessage('testqueue', 'This is a test message', 3600);
 $storageClient->putMessage('testqueue', 'This is a test message', 3600);
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.queue.api.read-queue">
+        <sect4 id="zend.service.windowsazure.storage.queue.api.read-queue">
             <title>Reading a message from a queue</title>
             <title>Reading a message from a queue</title>
 
 
             <para>
             <para>
@@ -135,9 +135,9 @@ foreach ($messages as $message) {
 }
 }
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.queue.api.peek-queue">
+        <sect4 id="zend.service.windowsazure.storage.queue.api.peek-queue">
             <title>Check if there are messages in a queue</title>
             <title>Check if there are messages in a queue</title>
 
 
             <para>
             <para>
@@ -166,6 +166,6 @@ foreach ($messages as $message) {
                 <methodname>deleteMessage()</methodname> method.  To do this, use
                 <methodname>deleteMessage()</methodname> method.  To do this, use
                 <methodname>getMessages()</methodname> instead.
                 <methodname>getMessages()</methodname> instead.
             </para>
             </para>
-        </sect3>
-    </sect2>
-</sect1>
+        </sect4>
+    </sect3>
+</sect2>

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

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
 <!-- Reviewed: no -->
-<sect1 id="zend.service.windowsazure.storage.table">
+<sect2 id="zend.service.windowsazure.storage.table">
     <title>Zend_Service_WindowsAzure_Storage_Table</title>
     <title>Zend_Service_WindowsAzure_Storage_Table</title>
 
 
     <para>
     <para>
@@ -26,14 +26,14 @@
         Azure production table storage.
         Azure production table storage.
     </para>
     </para>
 
 
-    <sect2 id="zend.service.windowsazure.storage.table.api">
+    <sect3 id="zend.service.windowsazure.storage.table.api">
         <title>Operations on tables</title>
         <title>Operations on tables</title>
 
 
         <para>
         <para>
             This topic lists some samples of operations that can be executed on tables.
             This topic lists some samples of operations that can be executed on tables.
         </para>
         </para>
 
 
-        <sect3 id="zend.service.windowsazure.storage.table.api.create">
+        <sect4 id="zend.service.windowsazure.storage.table.api.create">
             <title>Creating a table</title>
             <title>Creating a table</title>
 
 
             <para>
             <para>
@@ -53,9 +53,9 @@ $result = $storageClient->createTable('testtable');
 echo 'New table name is: ' . $result->Name;
 echo 'New table name is: ' . $result->Name;
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.table.api.list">
+        <sect4 id="zend.service.windowsazure.storage.table.api.list">
             <title>Listing all tables</title>
             <title>Listing all tables</title>
 
 
             <para>
             <para>
@@ -76,10 +76,10 @@ foreach ($result as $table) {
 }
 }
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
-    </sect2>
+        </sect4>
+    </sect3>
 
 
-    <sect2 id="zend.service.windowsazure.storage.table.entities">
+    <sect3 id="zend.service.windowsazure.storage.table.entities">
         <title>Operations on entities</title>
         <title>Operations on entities</title>
 
 
         <para>
         <para>
@@ -147,7 +147,7 @@ class SampleEntity extends Zend_Service_WindowsAzure_Storage_TableEntity
             <classname>Zend_Service_WindowsAzure_Storage_DynamicTableEntity</classname>.
             <classname>Zend_Service_WindowsAzure_Storage_DynamicTableEntity</classname>.
         </para>
         </para>
 
 
-        <sect3 id="zend.service.windowsazure.storage.table.entities.enforced">
+        <sect4 id="zend.service.windowsazure.storage.table.entities.enforced">
             <title>Enforced schema entities</title>
             <title>Enforced schema entities</title>
 
 
             <para>
             <para>
@@ -323,9 +323,9 @@ public $Age;
                     </para>
                     </para>
                 </listitem>
                 </listitem>
             </itemizedlist>
             </itemizedlist>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.table.entities.dynamic">
+        <sect4 id="zend.service.windowsazure.storage.table.entities.dynamic">
             <title>No enforced schema entities (a.k.a. DynamicEntity)</title>
             <title>No enforced schema entities (a.k.a. DynamicEntity)</title>
 
 
             <para>
             <para>
@@ -414,12 +414,12 @@ $target->setAzurePropertyType('Age', 'Edm.Int64');
                 <classname>Zend_Service_WindowsAzure_Storage_TableEntity</classname> if no specific
                 <classname>Zend_Service_WindowsAzure_Storage_TableEntity</classname> if no specific
                 class is passed into Table Storage methods.
                 class is passed into Table Storage methods.
             </para>
             </para>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.table.entities.api">
+        <sect4 id="zend.service.windowsazure.storage.table.entities.api">
             <title>Entities API examples</title>
             <title>Entities API examples</title>
 
 
-            <sect4 id="zend.service.windowsazure.storage.table.entities.api.insert">
+            <sect5 id="zend.service.windowsazure.storage.table.entities.api.insert">
                 <title>Inserting an entity</title>
                 <title>Inserting an entity</title>
 
 
                 <para>
                 <para>
@@ -446,9 +446,9 @@ echo 'Timestamp: ' . $result->getTimestamp() . "\n";
 echo 'Etag: ' . $result->getEtag() . "\n";
 echo 'Etag: ' . $result->getEtag() . "\n";
 ]]></programlisting>
 ]]></programlisting>
                 </example>
                 </example>
-            </sect4>
+            </sect5>
 
 
-            <sect4 id="zend.service.windowsazure.storage.table.entities.api.retrieve-by-id">
+            <sect5 id="zend.service.windowsazure.storage.table.entities.api.retrieve-by-id">
                 <title>Retrieving an entity by partition key and row key</title>
                 <title>Retrieving an entity by partition key and row key</title>
 
 
                 <para>
                 <para>
@@ -468,9 +468,9 @@ $entity= $storageClient->retrieveEntityById(
 );
 );
 ]]></programlisting>
 ]]></programlisting>
                 </example>
                 </example>
-            </sect4>
+            </sect5>
 
 
-            <sect4 id="zend.service.windowsazure.storage.table.entities.api.updating">
+            <sect5 id="zend.service.windowsazure.storage.table.entities.api.updating">
                 <title>Updating an entity</title>
                 <title>Updating an entity</title>
 
 
                 <para>
                 <para>
@@ -518,9 +518,9 @@ $entity->Name = 'New name';
 $result = $storageClient->updateEntity('testtable', $entity, true);
 $result = $storageClient->updateEntity('testtable', $entity, true);
 ]]></programlisting>
 ]]></programlisting>
                 </example>
                 </example>
-            </sect4>
+            </sect5>
 
 
-            <sect4 id="zend.service.windowsazure.storage.table.entities.api.delete">
+            <sect5 id="zend.service.windowsazure.storage.table.entities.api.delete">
                 <title>Deleting an entity</title>
                 <title>Deleting an entity</title>
 
 
                 <para>
                 <para>
@@ -541,10 +541,10 @@ $entity = $storageClient->retrieveEntityById(
 $result = $storageClient->deleteEntity('testtable', $entity);
 $result = $storageClient->deleteEntity('testtable', $entity);
 ]]></programlisting>
 ]]></programlisting>
                 </example>
                 </example>
-            </sect4>
-        </sect3>
+            </sect5>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.table.entities.querying">
+        <sect4 id="zend.service.windowsazure.storage.table.entities.querying">
             <title>Performing queries</title>
             <title>Performing queries</title>
 
 
             <para>
             <para>
@@ -618,9 +618,9 @@ foreach ($entities as $entity) {
 }
 }
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
+        </sect4>
 
 
-        <sect3 id="zend.service.windowsazure.storage.table.entities.batch">
+        <sect4 id="zend.service.windowsazure.storage.table.entities.batch">
             <title>Batch operations</title>
             <title>Batch operations</title>
 
 
             <para>
             <para>
@@ -657,10 +657,10 @@ foreach ($entities as $entity) {
 $batch->commit();
 $batch->commit();
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-        </sect3>
-    </sect2>
+        </sect4>
+    </sect3>
 
 
-    <sect2 id="zend.service.windowsazure.storage.table.sessionhandler">
+    <sect3 id="zend.service.windowsazure.storage.table.sessionhandler">
         <title>Table storage session handler</title>
         <title>Table storage session handler</title>
 
 
         <para>
         <para>
@@ -730,9 +730,9 @@ if (!isset($_SESSION['firstVisit'])) {
         <warning>
         <warning>
             <para>
             <para>
                 The <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session handler
                 The <classname>Zend_Service_WindowsAzure_SessionHandler</classname> session handler
-                should be registered before a call to <functionname>session_start()</functionname>
+                should be registered before a call to <methodname>session_start()</methodname>
                 is made!
                 is made!
             </para>
             </para>
         </warning>
         </warning>
-    </sect2>
-</sect1>
+    </sect3>
+</sect2>