Author: tomaz
Date: Sun Nov 15 22:50:51 2015
New Revision: 1714501
URL: http://svn.apache.org/viewvc?rev=1714501&view=rev
Log:
Update homepage tool tips.
Modified:
libcloud/site/trunk/generated/blog/atom.xml
libcloud/site/trunk/generated/index.html
libcloud/site/trunk/source/_assets/js/code-examples.js
Modified: libcloud/site/trunk/generated/blog/atom.xml
URL:
http://svn.apache.org/viewvc/libcloud/site/trunk/generated/blog/atom.xml?rev=1714501&r1=1714500&r2=1714501&view=diff
==============================================================================
--- libcloud/site/trunk/generated/blog/atom.xml (original)
+++ libcloud/site/trunk/generated/blog/atom.xml Sun Nov 15 22:50:51 2015
@@ -5,7 +5,7 @@
<link href="https://libcloud.apache.org" rel="self" />
<link href="https://libcloud.apache.org" />
<id>https://libcloud.apache.org</id>
- <updated>2015-11-15T18:26:06+01:00</updated>
+ <updated>2015-11-15T23:50:31+01:00</updated>
<author>
<name>The Apache Software Foundation</name>
</author>
Modified: libcloud/site/trunk/generated/index.html
URL:
http://svn.apache.org/viewvc/libcloud/site/trunk/generated/index.html?rev=1714501&r1=1714500&r2=1714501&view=diff
==============================================================================
--- libcloud/site/trunk/generated/index.html (original)
+++ libcloud/site/trunk/generated/index.html Sun Nov 15 22:50:51 2015
@@ -326,7 +326,7 @@
- <script src='/assets/index-77c76afd993ee1ef9937a9c9469e8205.js'
type='text/javascript'></script>
+ <script src='/assets/index-eeb60572104303d50e83fcc56c5dfe59.js'
type='text/javascript'></script>
Modified: libcloud/site/trunk/source/_assets/js/code-examples.js
URL:
http://svn.apache.org/viewvc/libcloud/site/trunk/source/_assets/js/code-examples.js?rev=1714501&r1=1714500&r2=1714501&view=diff
==============================================================================
--- libcloud/site/trunk/source/_assets/js/code-examples.js (original)
+++ libcloud/site/trunk/source/_assets/js/code-examples.js Sun Nov 15 22:50:51
2015
@@ -2,6 +2,12 @@
var LINE_TOOLTIPS = {
'compute-1': {
+ '1': 'Import libcloud type we need',
+ '2': [
+ 'Import "get_driver" method for obtaining a reference to the driver ',
+ ' class.'
+ ],
+
'4': [
'Obtain a reference to the provider driver class. <br /><br />Keep in ',
'mind that Libcloud supports more than 30 providers total and ',
@@ -18,30 +24,38 @@ var LINE_TOOLTIPS = {
'List all the available sizes. <br /><br />In Libcloud, size ',
'represents a server hardware configuration. Usually this is the amount
',
'of the available RAM, bandwidth, CPU speed and disk size. Most of ',
- 'the drivers also expose an hourly price (in US dollars) for the Node
of',
- 'this size.'
+ 'the drivers also expose an hourly price (in US dollars) for the Node ',
+ 'of this size.'
],
'8': [
'List all the available images.<br /><br />In Libcloud, image ',
'represents an operating system image.'
],
- '10': 'Select a size we would like to use.',
- '11': 'Select an image we would like to use.',
+ '10': 'Select a size to use.',
+ '11': 'Select an image to use.',
- '13': 'Create a node using a previously selected size and image.'
+ '13': 'Create a node using a previously selected size and image.',
+ '14': 'Print representation of the created Node object.'
},
'dns-1': {
+ '1': 'Import libcloud types we need',
+ '2': [
+ 'Import "get_driver" method for obtaining a reference to the driver ',
+ ' class.'
+ ],
+
'4': 'Obtain a reference to the provider driver class.',
'5': 'Instantiate the driver with your provider credentials.',
- '7': 'List all the available zones on this account.',
- '8': 'Select the zone we would like to operate on.',
+ '7': 'List all the available zones (domains) on this account.',
+ '8': 'Select the zone to operate on.',
'10': [
'Create a new "A" record with a name of "www" and a value of ',
'"127.0.0.1" under the selected zone.'
- ]
+ ],
+ '11': 'Print representation of the created Record object.'
}
};