From: Jordan Augé Date: Thu, 27 Mar 2014 18:33:07 +0000 (+0100) Subject: slice view experiment tab adding terminal icon X-Git-Tag: myslice-1.1~168 X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=commitdiff_plain;h=474b66769abb3ba8e7c5d6b927fddcaefc86632f slice view experiment tab adding terminal icon --- diff --git a/portal/static/img/terminal_icon.png b/portal/static/img/terminal_icon.png new file mode 100644 index 00000000..95e76230 Binary files /dev/null and b/portal/static/img/terminal_icon.png differ diff --git a/portal/templates/slice-tab-experiment.html b/portal/templates/slice-tab-experiment.html index 563cb904..db9b2823 100644 --- a/portal/templates/slice-tab-experiment.html +++ b/portal/templates/slice-tab-experiment.html @@ -2,25 +2,23 @@

Secure Shell (SSH)

+

Secure Shell (SSH) is a cryptographic network protocol for secure data communication, remote command-line login, remote command execution, and other secure network services between two networked computers that connects, via a secure channel over an insecure network, a server and a client (running SSH server and SSH client programs, respectively). The protocol specification distinguishes between two major versions that are referred to as SSH-1 and SSH-2.

More Info: http://en.wikipedia.org/wiki/Secure_Shell

- - -

+
+
+

NEPI, the Network Experimentation Programming Interface, is a life-cycle management tool for network experiments. The idea behind NEPI is to provide a single tool to design, deploy, and control network experiments, and gather the experiment results. Going further, NEPI was specially conceived to function with arbitrary experimentation platforms, so researchers could use a single tool to work with network simulators, emulators, or physical testbeds, or even a mixture of them. To accomplish this, NEPI provides a high-level interface to describe experiments that is independent from any experimentation platform, but is able to capture platform specific configurations. Experiment definitions can be stored in XML format to be later reproduced, and modified according to experimentation needs. Experiment execution is orchestrated by a global experiment controller, that is platform independent, and different platform-dependent testbed controllers, creating a control hierarchy that is able t adapt to platform specific requirements while providing an integrated control scheme.

More Info: http://nepi.inria.fr

- -

+
+

OMF is a Testbed Control, Measurement and Management Framework.

OMF was originally developed for the ORBIT wireless testbed at Winlab, Rutgers University. Since 2007, OMF has been actively extended to operate on testbeds with many different type of network and resource technologies. It is now deployed and used on different testbeds in Australia, Europe, and in the U.S. OMF is currently being extended further to support exciting new features and technologies. This website is hosting this ongoing activity. OMF development is now conducted essentially within the TEMPO project at NICTA (Australia) in strong collaboration with Winlab (Rutgers University).

-

In addition to the main OMF software, this site also hosts OMF sub-projects addressing various related aspects of a testbed's control, measurement, and management.

- -

More Info: http://mytestbed.net/projects/omf

diff --git a/rest/__init__.py b/rest/__init__.py index 3c4eb5f0..faef22e1 100644 --- a/rest/__init__.py +++ b/rest/__init__.py @@ -50,7 +50,7 @@ class ObjectRequest(object): self.fields = ['user_id', 'email', 'password', 'config','status']; elif table == "account": # XXX TODO: Multiple key for account = (platform_id, user_id) - self.id = None + self.id = "platform_id, user_id" self.fields = ['platform_id', 'user_id', 'auth_type', 'config']; elif table == "platform": self.id = 'platform' @@ -141,7 +141,10 @@ class ObjectRequest(object): print "query = ",query else: raise Exception, "Params are required for update" - + + if self.id is not None: + query.select(self.id) + return execute_query(self.request, query) def delete(self):