Browse Source

Fixed svg layout and some typos.

Nuwan Goonasekera 10 years ago
parent
commit
009e2749b5

+ 2 - 2
docs/extras/_images/object_relationships_detailed.svg

@@ -8,9 +8,9 @@
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   viewBox="0 0 1000 700"
+   viewBox="0 0 1000 800"
    width="700"
    width="700"
-   height="700"
+   height="650"
    preserveAspectRatio="xMinYMin meet"
    preserveAspectRatio="xMinYMin meet"
    id="svg3515"
    id="svg3515"
    version="1.1"
    version="1.1"

+ 1 - 2
docs/topics/paging_and_iteration.rst

@@ -31,7 +31,7 @@ Example:
     if (rl.is_truncated)
     if (rl.is_truncated)
         rl = provider.compute.instances.list(limit=100,
         rl = provider.compute.instances.list(limit=100,
                                              marker=rl.marker)
                                              marker=rl.marker)
-"""
+
 
 
 To ease development, CloudBridge also provides standard Python iterators that will page
 To ease development, CloudBridge also provides standard Python iterators that will page
 the results in for you automatically. Therefore, when you need to iterate through all
 the results in for you automatically. Therefore, when you need to iterate through all
@@ -44,4 +44,3 @@ Example:
     # Iterate through all results
     # Iterate through all results
     for instance in provider.compute.instances:
     for instance in provider.compute.instances:
         print("Instance Data: {0}", instance)
         print("Instance Data: {0}", instance)
-"""