From 66384cc8a4129eec46b4c86283c5b4907624ef81 Mon Sep 17 00:00:00 2001
From: Julien Duponchelle
Date: Thu, 6 Aug 2015 17:46:49 +0200
Subject: [PATCH] Device => Appliance
---
build.py | 2 +-
templates/index.html | 6 +++---
templates/layout/default.html | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/build.py b/build.py
index 6baef53..c13da87 100644
--- a/build.py
+++ b/build.py
@@ -61,7 +61,7 @@ def keep_only_version_with_appliance(md5sum, appliance):
version where the image is present.
:param md5sum: Md5sum of the image
- :param appliance: Device hash
+ :param appliance: Appliance hash
:returns: List of version
"""
diff --git a/templates/index.html b/templates/index.html
index 70adc4d..eb4c3b2 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,8 +1,8 @@
{% extends "layout/default.html" %}
{% block script %}
-function importDevice() {
- gns3_button(function() { return gns3.importDevice(); });
+function importAppliance() {
+ gns3_button(function() { return gns3.importAppliance(); });
return false;
}
@@ -14,6 +14,6 @@ function importDevice() {
Show appliances
- Import appliance
+ Import appliance
{% endblock %}
diff --git a/templates/layout/default.html b/templates/layout/default.html
index 2fcd33e..09a1371 100644
--- a/templates/layout/default.html
+++ b/templates/layout/default.html
@@ -69,7 +69,7 @@