Update docs to use the term Synnefo where needed
authorStavros Sachtouris <saxtouri@admin.grnet.gr>
Mon, 15 Apr 2013 15:14:27 +0000 (18:14 +0300)
committerStavros Sachtouris <saxtouri@admin.grnet.gr>
Mon, 15 Apr 2013 15:14:27 +0000 (18:14 +0300)
In some cases, the term 'GRNET development team' was replaced with 'Synnefo' or
'Synnefo development team'

docs/installation.rst
docs/man/kamaki.rst
docs/overview.rst
kamaki/clients/astakos/__init__.py
kamaki/clients/cyclades/__init__.py
kamaki/clients/cyclades/rest_api.py
kamaki/clients/image/__init__.py
kamaki/clients/pithos/__init__.py

index 42174e6..af2ea9d 100644 (file)
@@ -22,7 +22,7 @@ The following steps describe a command-line approach, but any graphic package ma
 
     deb http://apt2.dev.grnet.gr stable/
 
-* Make sure the GPG public key for the GRNET dev team is added:
+* Make sure the GPG public key for the Synnefo development team is added:
 
     .. code-block:: console
 
index 7b30b14..e289463 100644 (file)
@@ -231,5 +231,5 @@ test commands (hidden)
 Author
 ------
 
-GRNET development team <synnefo-devel@googlegroups.com>.
+Synnefo development team <synnefo-devel@googlegroups.com>.
 
index 1fb2cce..996143d 100644 (file)
@@ -15,7 +15,7 @@ Who uses *kamaki*?
 
 Kamaki is targeted to new and advanced users who need an intuitive managerial console tool to manage a local or remote synnefo cloud installation.
 
-*kamaki* is currently used (i) internally in GRNET by the development team to test the synnefo software, (ii) by the deployment team which operates the ~okeanos service and (iii) by the testers using the ~okeanos service and want to access the service from the command line.
+*kamaki* is currently used (i) internally by the Synnefo development team to test the synnefo software, (ii) by the deployment team which operates the GRNET ~okeanos service and (iii) by the testers using the ~okeanos service or other synnefo installations and want to access the services from command line.
 
 What's more, (iv) *kamaki* clients API is used in synnefo as an API for accessing remote services as well as (v) for building manager tools of various synnefo functions (e.g. image registration).
 
index deb941f..e5bafc5 100644 (file)
@@ -35,7 +35,7 @@ from kamaki.clients import Client, ClientError
 
 
 class AstakosClient(Client):
-    """GRNet Astakos API client"""
+    """Synnefo Astakos API client"""
 
     def __init__(self, base_url, token):
         super(AstakosClient, self).__init__(base_url, token)
index 376e0d0..b3c6f4e 100644 (file)
@@ -39,7 +39,7 @@ from kamaki.clients import ClientError
 
 
 class CycladesClient(CycladesRestClient):
-    """GRNet Cyclades API client"""
+    """Synnefo Cyclades Compute API client"""
 
     def start_server(self, server_id):
         """Submit a startup request
index c717ff5..c81dd81 100644 (file)
@@ -37,7 +37,7 @@ import json
 
 
 class CycladesRestClient(ComputeClient):
-    """GRNet Cyclades REST API Client"""
+    """Synnefo Cyclades REST API Client"""
 
     def servers_get(
             self,
index 3599a2b..d1b9fa1 100644 (file)
@@ -36,7 +36,7 @@ from kamaki.clients.utils import path4url, filter_in
 
 
 class ImageClient(Client):
-    """OpenStack Image Service API 1.0 and GRNET Plankton client"""
+    """Synnefo Plankton API client"""
 
     def __init__(self, base_url, token):
         super(ImageClient, self).__init__(base_url, token)
index 6b6021c..7c871fb 100644 (file)
@@ -66,7 +66,7 @@ def _range_up(start, end, a_range):
 
 
 class PithosClient(PithosRestClient):
-    """GRNet Pithos API client"""
+    """Synnefo Pithos+ API client"""
 
     def __init__(self, base_url, token, account=None, container=None):
         super(PithosClient, self).__init__(base_url, token, account, container)