Browse Source

[DOCUMENTATION] English:

- manual fixes (quoting)

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15684 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 years ago
parent
commit
9471b92119

+ 7 - 7
documentation/manual/en/module_specs/Zend_Amf-Server.xml

@@ -149,26 +149,26 @@ class World
         <para>
             If you have never created a service-config.xml file you can do so by opening your
             project in your Navigator window. Right click on the project name and select
-            ‘properties’. In the Project properties dialog go into ‘Flex Build Path’ menu,
-            ‘Library path’ tab and be sure the ‘rpc.swc’ file is added to your projects path
+            'properties'. In the Project properties dialog go into 'Flex Build Path' menu,
+            'Library path' tab and be sure the 'rpc.swc' file is added to your projects path
             and Press Ok to close the window.
         </para>
         <para>
             You will also need to tell the compiler to use the service-config.xml to find
             the RemoteObject endpoint. To do this open your project properties panel again by
             right clicking on the project folder from your Navigator and selecting properties.
-            From the properties popup select ‘Flex Compiler’ and add the
-            string: -services “services-config.xml”. Press Apply then OK to return to update
+            From the properties popup select 'Flex Compiler' and add the
+            string: -services "services-config.xml". Press Apply then OK to return to update
             the option. What you have just done is told the Flex compiler to look to the
             services-config.xml file for runtime variables that will be used by the
             RemotingObject class.
         </para>
         <para>
             We now need to tell Flex which services configuration file to use for connecting to
-            our remote methods. For this reason create a new ‘services-config.xml’ file into your
+            our remote methods. For this reason create a new 'services-config.xml' file into your
             Flex project src folder. To do this right click on the project folder and select
-            ‘new’ ‘File’ which will popup a new window. Select the project folder and then name
-            the file ‘services-config.xml’ and press finish.
+            'new' 'File' which will popup a new window. Select the project folder and then name
+            the file 'services-config.xml' and press finish.
         </para>
         <para>
             Flex has created the new services-config.xml and has it open. Use the following example

+ 4 - 4
documentation/manual/en/module_specs/Zend_Auth_Adapter_DbTable.xml

@@ -216,7 +216,7 @@ if ($result->isValid()) {
             <emphasis>authentication</emphasis> and not
             <emphasis>authorization</emphasis>, there are a few
             instances and problems that toe the line between which domain they fit
-            within. Depending on how youve decided to explain your problem, it
+            within. Depending on how you've decided to explain your problem, it
              sometimes makes sense to solve what could look like an
              authorization problem within the authentication adapter.
         </para>
@@ -247,7 +247,7 @@ $adapter = new Zend_Auth_Adapter_DbTable(
         <para>
             Another scenario can be the implementation of a salting mechanism.
             Salting is a term referring to a technique which can highly improve
-            your applications security. It’s based on the idea that
+            your application's security. It’s based on the idea that
             concatenating a random string to every password makes it impossible
             to accomplish a successful brute force attack on the database using
             pre-computed hash values from a dictionary.
@@ -261,7 +261,7 @@ $sqlAlter = "ALTER TABLE [users] "
           . "AFTER [password]";
 ]]></programlisting>
         <para>
-            Heres a simple way to generate a salt string for every user at
+            Here's a simple way to generate a salt string for every user at
             registration:
         </para>
         <programlisting language="php"><![CDATA[
@@ -269,7 +269,7 @@ for ($i = 0; $i < 50; $i++) {
     $dynamicSalt .= chr(rand(33, 126));
 ]]></programlisting>
         <para>
-            And now lets build the adapter:
+            And now let's build the adapter:
         </para>
         <programlisting language="php"><![CDATA[
 $adapter = new Zend_Auth_Adapter_DbTable(

+ 2 - 2
documentation/manual/en/module_specs/Zend_Pdf-Properties.xml

@@ -4,7 +4,7 @@
     <!-- @todo review and revise upon completion of refactoring -->
     <title>Document Info and Metadata</title>
     <para>
-        A PDF document may include general information such as the documents title,
+        A PDF document may include general information such as the document's title,
         author, and creation and modification dates.
     </para>
     <para>
@@ -28,7 +28,7 @@ $pdf->save($pdfPath);
         <itemizedlist>
             <listitem>
                 <para>
-                    <emphasis>Title</emphasis> - string, optional, the documents title.
+                    <emphasis>Title</emphasis> - string, optional, the document's title.
                 </para>
             </listitem>
             <listitem>