You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2012/09/24 08:43:13 UTC

svn commit: r1389221 - /libcloud/site/trunk/content/docs/storage-examples.mdtext

Author: tomaz
Date: Mon Sep 24 06:43:12 2012
New Revision: 1389221

URL: http://svn.apache.org/viewvc?rev=1389221&view=rev
Log:
Fix typo, update 'available since'.

Modified:
    libcloud/site/trunk/content/docs/storage-examples.mdtext

Modified: libcloud/site/trunk/content/docs/storage-examples.mdtext
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/docs/storage-examples.mdtext?rev=1389221&r1=1389220&r2=1389221&view=diff
==============================================================================
--- libcloud/site/trunk/content/docs/storage-examples.mdtext (original)
+++ libcloud/site/trunk/content/docs/storage-examples.mdtext Mon Sep 24 06:43:12 2012
@@ -85,7 +85,7 @@ title: Storage -> Examples
 
 <h3 id="publishing-a-static-website-using-cloudfiles-driver">Publishing a static website using CloudFiles driver</h3>
 
-Note this feature is currently only available in Libcloud `trunk`.
+Note this feature is available since Libcloud `0.11.0`.
 
     ::python
     from StringIO import StringIO
@@ -114,5 +114,5 @@ Note this feature is currently only avai
     driver.ex_set_error_page(container=container, file_name='error.html')
     driver.enable_container_cdn(container=container)
 
-    print(All done you can view the website at', \
+    print('All done you can view the website at: ' + \
           driver.get_container_cdn_url(container=container))