From 6ad79527a276da1524433596c2f89f09d51b16fc Mon Sep 17 00:00:00 2001 From: Yasin <mohammed-yasin.rahman@lip6.fr> Date: Tue, 29 Apr 2014 17:40:12 +0200 Subject: [PATCH] About: made specific for Fed4fire --- portal/templates/fed4fire/fed4fire_about.html | 99 +++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 portal/templates/fed4fire/fed4fire_about.html diff --git a/portal/templates/fed4fire/fed4fire_about.html b/portal/templates/fed4fire/fed4fire_about.html new file mode 100644 index 00000000..76b96921 --- /dev/null +++ b/portal/templates/fed4fire/fed4fire_about.html @@ -0,0 +1,99 @@ +{% extends "layout_wide.html" %} + +{% block content %} +<div class="container"> + <div class="row"> + <div class="col-md-12"> + <ul class="nav nav-tabs nav-section"> + <li class="active"><a href="#about"><img src="{{ STATIC_URL }}icons/slices-xs.png" alt="About" />About</a></li> + <li><a href="#components">Underlying technologies</a></li> + </ul> + </div> + </div> +</div> + + +<div class="container tab-content"> + <div class="tab-pane active row" id="about"> + <div class="col-md-12"> + <p> + Fed4Fire Portal is a central place to get acess to all Fed4fire testbeds.In order to get access to the portal, + an experimenter needs to <a href="/portal/register">register</a> to the portal. The portal administrative body + is responsible to accept or reject newly registered users. + </p> + <p> + To learn more about Fed4fire visit: <a href="http://www.fed4fire.eu/" target="_blank">http://www.fed4fire.eu/</a> + </p> + <p> + If you have any questions regarding using the portal visit our <a href="/portal/support/">FAQ</a> + </p> + <p> + Fed4fire portal is a community effot. To get more information about Fed4fire portal team visit: + <a href="http://myslice.info/community" target="_blank">http://myslice.info/community</a> + </p> + </div> + </div> + <div class="tab-pane row" id="components"> + <div class="col-md-12"> + <h3>A ready-made and easily customisable user interface for your testbed.</h3> + <p> + MySlice is an ambitious project aiming to support researchers throughout the lifecycle of experiments that can run on a variety + of testbeds spanning different administrative domains and networking technologies. Its basic principle is to bring together + available resources with useful information (characteristics, performance, network measurements). + </p> + <p> + MySlice inititiave started in Janury 2011 by offering annotation services for the first ederated experimental resources. Today, + MySlice has taken a big step toward becoming a tand-alone web framework, which will present all available resources from testbeds + across the world, interconnected through the Slice-based Facility Architecture (SFA) and annotated by the TopHat measurement system. + </p> + <p> + Our framework is built with standard programming tools (python and javascript for the front-end and python for the back-end) + and has a modular structure based on the concept of plugins for implementing different core functionalities (query editing, + data display, and resource allocation). + </p> + <p> + The goal is to enable developers with expertise on different testbed technologies and different experimental + practices to work in parallel for optimizing the tools presented to the users allowing them for a wide range of choices + according to their own requirements. Opening in this way the development of web-based user tools for experimentation and + sharing effort and information can increase significantly the chances for the achievement of our challenging objective. + </p> + </div> + <div class="col-md-12"> + <h3>Portal Components</h3> + <h5>Myslice (Web Frontend)</h5> + <p> + MySlice is an ambitious project aiming to support researchers throughout the + lifecycle of experiments that can run on a variety of testbeds spanning different + administrative domains and networking technologies. Its basic principle is to bring + together available <b>resources</b> with <b>useful information</b> (characteristics, performance, network measurements). + </p> + <p> More Info: <a href="http://myslice.info/" target="_blank">http://myslice.info/</a></p> + <p> Code: <a href="http://git.onelab.eu/?p=myslice.git;a=summary" target="_blank">Git Repository</a> (read only)</p> + <p> + If you need write access to the git repository you need first to send your public key to <a href="mailto:support@myslice.info">support@myslice.info</a>. + </p> + + + <h5>Manifold (Portal backend)</h5> + <p>Manifold is the backend that is running behind the portal.</p> + <p> Documentation: <a href="http://trac.myslice.info/" target="_blank">http://trac.myslice.info/</a></p> + <p> Code: <a href="https://git.top-hat.info/?p=tophat.git;a=shortlog;h=refs/heads/devel" target="_blank">Git Repository</a> (read only)</p> + + <h5>Fed4fire Registry</h5> + <p><a href="https://sfa-fed4fire.pl.sophia.inria.fr" target="_blank">Fed4fire registry</a> is a SFA registry. SFA Registry is a specific installation mode of the SFAWrapper.</p> + <p> More Info: <a href="http://svn.planet-lab.org/wiki/SfaDeveloperRegistryTutorial#RunninginRegistry-Onlymode" target="_blank">SFA Registry</a></p> + </div> + </div> +</div> + +<script> +$(document).ready(function() { + $('.nav-tabs a').click(function (e) { + e.preventDefault(); + $(this).tab('show'); + }); +}); +</script> + + +{% endblock %} -- 2.47.0